/******************************
* START CLASSES REQUIRED BY WYSIWYG
* ALTHOUGH CLASSES CAN BE MODIFIED TO SOME EXTENT, 
* THESE SHOULD BE STANDARD TO ALL STYLESHEETS
******************************/

/*** TEXT CLASSES ***/
 
BODY /* default text */
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 75%;
	color: #000;
    margin-top: 1px;
}
 
TD, TH, CAPTION /* default text */
{
	text-decoration: none;
	vertical-align: top;
}
 
H1 /* page title */
{
	font-size: 190%;
	color: #DB1D23;
	margin-bottom: 5px;
}
 
H2 /* header within page */
{
	font-size: 120%;
	color: #DB1D23;
	margin-bottom: 10px;
}
 
H3 /* header within page */
{
	font-size: 110%;
}
 
.textunderline /* underlined text */
{
	text-decoration: underline;
}

.textdefault /* a text 'reset' class for use in wysiwyg only, should match default text style */
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: small;
	font-weight: normal;
	text-decoration: none;
	color: #000;
}

/*** LINK CLASSES ***/
 
A:link, A:visited /* default link */
{
	color: #000;
	text-decoration: underline;
}
 
A:hover, A:active /* default link */
{
	color: #666;
	text-decoration: none;
}
 
/*** TABLE, IMAGE AND PARAGRAPH TEXT ALIGNMENT ***/
 
TABLE.left, P.left /* align table or <p>-wrapped image to the left */
{
	float: left;
	margin: 0px 10px 10px 0px;
}
 
TABLE.right, P.right /* align table or <p>-wrapped image to the right */
{
	float: right;
	margin: 0px 0px 10px 10px;
}
 
TABLE.center /* align table to the centre */
{
	margin: 0px auto;
}
 
P.center /* align <p>-wrapped image to the left */
{
	text-align: center;
}

P.textcenter,
SPAN.textcenter /* align paragraph text to the centre */
{
	text-align: center;
	display: block;
}
 
P.textleft,
SPAN.textleft /* align paragraph text to the left */
{
	text-align: left;
	display: block;
}
 
P.textright,
SPAN.textright /* align paragraph text to the right */
{
	text-align: right;
	display: block;
}
 
P.textjustify,
SPAN.textjustify /* 'justify' align paragraph text */
{
	text-align: justify;
	display: block;
}

/******************************
* STYLES SPECIFIC TO WYSIWYG OBJECTS
*
* ADD PADDING TO NON-PADDED CONTENT IMAGES
******************************/
.wysiwyg IMG
{
	margin: 10px;
}

.wysiwyg P.left IMG, .wysiwyg P.right IMG, .wysiwyg P.center IMG
{	
	margin: 0px;
}

/******************************
* END OF WYSIWYG SPECIFIC STYLES
*
* END CLASSES REQUIRED BY WYSIWYG
* START CLASSES USED BY ARFSDEMO
* ALTHOUGH NEW CLASSES CAN BE ADDED TO STYLESHEET, 
* DO AS MUCH AS YOU CAN BY EDITING THESE FIRST
******************************/

/*** BACKGROUND COLOURS ***/

.secintrobg /* section intro background */
{
	background-color: #BBCEE0;
	padding: 5px;
}

.artintrobg /* article intro background */
{
	background-color: #DFE8F0;
	padding: 5px;
}

.accent /* accent colour (for high contrast) */
{
	background-color: #DB1D23;
}

.red
{
	background-color: #DB1D23;
}

/*** ADDITIONAL TEXT CLASSES ***/

.warning /* for 'mandatory field' star */
{
	color: #F00;
}

.date /* for displaying the date on news etc. */
{
	font-size: 90%;
	color: #666;
}

/*** ADDITIONAL LINK CLASSES ***/

	/* UNUSED BY ARFSDEMO */

/*** FORMS AND INPUTS ***/

FORM /* removes unwanted form whitespace */
{
	margin: 0px;
}

INPUT, SELECT
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
}

.textarea /* for <input type="text"> and <select> fields */
{
	border: 1px solid #000;
	width: 95%;
}

.textareashort /* for shorter <input type="text"> and <select> fields*/
{
	border: 1px solid #000;
	width: 120px;
}

.textarea2d /* for <textarea> */
{
	border: 1px solid #000;
	width: 95%;
	height: 150px;
}

.textareafree /* for <input type="text"> and <select> fields of free width */
{
	border: 1px solid #000;
}

/*** DATA TABLE ***/

TABLE.datatable
{
	border-style: solid;
	border-color: #084C8C;
	border-width: 1px 0px 0px 1px;
}

TABLE.datatable TH
{
	border-style: solid;
	border-color: #084C8C;
	border-width: 0px 1px 1px 0px;
	color: #000;
	background-color: #BBCEE0;
	padding: 4px;
	text-align: left;
}

TABLE.datatable TH.plaintext /* for default text in a <th> */
{
	font-weight: normal;
	color: #000;
	text-align: left;
}

TABLE.datatable TD
{
	border-style: solid;
	border-color: #084C8C;
	border-width: 0px 1px 1px 0px;
	padding: 4px;
	text-align: left;
}

TABLE.datatable TD TD /* remove borders from nested table cells */
{
	border-width: 0px
}

TABLE.datatable CAPTION
{
	border-style: solid;
	border-color: #084C8C;
	font-weight: bold;
	padding: 4px;
	text-align: left;
	border-width: 1px 1px 0px 1px;
	background-color: #084C8C;
	color: #FFF;
}

/*** TOP MENU BAR
* the datasource of the top menu bar is configured on a site-by-site basis.
* it is set as either 'menugroup' or 'menu'. 
***/

#topmenubar TD
{
	background-image: url(../images/menu_bar_bg.gif);
	background-repeat: repeat-x;
}

#topmenubar TABLE.on TD /* bg colour of selected menu/menugroup */
{
	background-image: url(../images/menu_bar_white.gif);
	background-repeat: repeat-x;
	vertical-align: middle;
	font-weight: bold;
	font-size: 100%;
}

#topmenubar TABLE.off TD /* bg colour of unselected menu/menugroup */
{
	background-image: url(../images/menu_bar_grad.gif);
	background-repeat: repeat-x;
	vertical-align: middle;
	font-weight: bold;
	font-size: 100%;
}

#topmenubar TABLE.on TD A:link,
#topmenubar TABLE.on TD A:visited
{
	color: #000;
	text-decoration: none;
}

#topmenubar TABLE.on TD A:hover,
#topmenubar TABLE.on TD A:active
{
	color: #000;
	text-decoration: underline;
}

#topmenubar TABLE.off TD A:link,
#topmenubar TABLE.off TD A:visited
{
	color: #FFF;
	text-decoration: none;
}

#topmenubar TABLE.off TD A:hover,
#topmenubar TABLE.off TD A:active
{
	color: #FFF;
	text-decoration: underline;
}

/*** LEFT HAND MENU ***/

#leftnav
{
	font-weight: bold;
	font-size: 100%;
}

#leftnav A:link,
#leftnav A:visited
{
	text-decoration: none;
}

#leftnav A:hover,
#leftnav A:active
{
	text-decoration: underline;
}

#leftnav TABLE.toplevel TD
{
	background-image: url(../images/leftnav_grad.gif);
	background-repeat: repeat-x;
	color: #FFF;
}

#leftnav TABLE.toplevel TD A
{
	color: #FFF;
}

#leftnav TABLE.menuitemon TD
{
	background-image: url(../images/leftnav_grad_menuitemon.gif);
	background-repeat: repeat-x;
	color: #FFF;
}

#leftnav TABLE.menuitemon TD A
{
	color: #FFF;
}

#leftnav TABLE.menuitemoff TD
{
	background-image: url(../images/leftnav_grad_menuitemoff.gif);
	background-repeat: repeat-x;
	color: #FFF;
}

#leftnav TABLE.menuitemoff TD A
{
	color: #FFF;
}

#leftnav TABLE.sectionon TD
{
	background-image: url(../images/leftnav_grad_sectionon.gif);
	background-repeat: repeat-x;
	color: #000;
}

#leftnav TABLE.sectionon TD A
{
	color: #000;
}

#leftnav TABLE.sectionoff TD
{
	background-image: url(../images/leftnav_grad_sectionoff.gif);
	background-repeat: repeat-x;
	color: #000;
}

#leftnav TABLE.sectionoff TD A
{
	color: #000;
}

#leftnav UL
{
	margin: 0px 0px 10px 30px;
	padding: 0px;
}

#leftnav LI.menuitemon
{
	color: #F00;
}

#leftnav LI.menuitemoff
{
	list-style-type: none;
}

#leftnav LI.sectionon
{
	color: #F00;
}

#leftnav LI.sectionoff
{
	list-style-type: none;
}

/*** BREADCRUMB TRAIL NAVIGATION **/

#breadcrumb
{
	font-size: 90%;
}

#breadcrumb A:link,
#breadcrumb A:visited
{
	font-weight: bold;
	text-decoration: none;
}

#breadcrumb A:hover,
#breadcrumb A:active
{
	font-weight: bold;
	text-decoration: underline;
}

/*** EMAIL/PRINT CONTROLS ***/

#emailprint TD
{
	font-size: 85%;
	vertical-align: middle;
	white-space: nowrap;
}

/*** PREVIOUS/NEXT CONTROLS ***/

DIV.prevnext
{
	font-size: 85%;
}

/*** CONTENT AREA ***/

#content
{
	padding: 0px 0px 20px 0px;
}

/*** FOOTER ***/

#footer TD
{
	color: #FFF;
	background-color: #084C8C;
	font-size: 90%;
	font-weight: bold;
	vertical-align: middle;
}

#footer A:link,
#footer A:visited,
#footer A:hover,
#footer A:active
{
	color: #FFF;
}

/*** LEFT AND RIGHT INCLUDES (Search/Register etc.) ***/

TD.includesbg
{
	background-color: #FFF;
	width: 300px;
}

TABLE.includebox TD.related
{
	padding: 5px;
	background-image: url(../images/related_grad.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	vertical-align: middle;
	font-size: 85%;
}

TABLE.includebox H2
{
	font-size: 110%;
	margin-bottom: 0px;
}

TABLE.includebox H2 A
{
	color: #084C8C;
}

TABLE.includebox H2.hpnews
{
	font-size: 110%;
	margin-bottom: 5px;
	margin-top: 0px;
}

TABLE.includebox H2.hpnews A
{
	color: #DB1D23;
}

TABLE.includebox TD.hplists
{
	padding: 5px;
	background-image: url(../images/hplists_grad.gif);
	background-repeat: repeat-x;
	background-position: top;
	vertical-align: middle;
}

TABLE.includebox TD.hplists H2
{
	margin-top: 0px;
}

TABLE.includebox TD.hplists H2 A
{
	color: #084C8C;
}

TABLE.includebox TD.hpnews
{
	padding: 5px;
	background-color: #FFF;
}

TABLE.includebox .bordered
{
	border-top: 1px solid #A1A1A1;
}

TABLE.includebox TD.header
{
	background-color: #CCC;
}

TABLE.includebox A:link,
TABLE.includebox A:visited
{
	text-decoration: none;
}

TABLE.includebox A:hover,
TABLE.includebox A:active
{
	text-decoration: underline;
}

/*** CLASSES USED TO GET INSIDE .NET TABLES IN SEARCH.ASPX ***/

#SearchDataGrid TD
{
	padding: 10px;
}

TR.pagerstyle TD
{
	background-color: #BBCEE0;
	font-size: 85%;
}

TR.pagerstyle TD SPAN
{
	padding: 0px 10px;
}

/*** AZ SERVICES PAGE - AZ LINKS ***/

#azlinks TD
{
	font-size: 140%;
	font-weight: bold;
	text-align: center;
}

#azlinks SPAN.selected
{
	color: #01B0E7;
}

#azlinks TD.disabled
{
	color: #666;
}

/*** REMOVE IMAGE BORDERS BY DEFAULT ***/

IMG
{
	border: 0px;
}

/*** HIDING ELEMENTS USED IN NON CSS DISPLAY (E.G HR) ***/

.hide
{
	display: none;
}

/******************************
* END CLASSES USED BY ARFSDEMO
******************************/

h1.logo {
	background-image: url('../images/elbg_logo.jpg');
	width: 371px;
	height: 80px;
	text-indent: -9000px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

div.corner_bl {
	width: 6px;
	height: 6px;
	background-image: url('../images/corner_dkblue_bl.gif');
}

div.corner_br {
	width: 6px;
	height: 6px;
	background-image: url('../images/corner_dkblue_br.gif');
}

div.corner_tl {
	width: 6px;
	height: 6px;
	background-image: url('../images/corner_dkblue_tl.gif');
}

div.corner_tr {
	width: 6px;
	height: 6px;
	background-image: url('../images/corner_dkblue_tr.gif');
}

div.footer_logos {
	width: 491px;
	height: 57px;
	background-image: url('../images/elbg_footer.gif');
}
