<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
This ID holds the position and define the width of the contents of the page.
Every webpage must wrap up within a &lt;div&gt; containing this ID.
*/
#contents 
{
	width: 82%;
	text-align: left;
	margin-left: 4em;
	font-size: 1.0em;
}


.help 
{
	font-size: xx-small;
}

/*
	This style is used for last updated date of any document.
*/
.version01 
{
	color: Blue;
	font-size: 0.9em;
}

/*
Use this class in order to make text a bit smaller than our standard text.
*/
.Bodyxsmall {
	font-size: 0.8em;
	font-style: normal;
	font-weight: lighter;
}


/*
Use this class in order to make text a bit more smaller than our standard text.
*/
.Bodyxxsmall 
{  
	font-size: 0.7em; 
	font-style: normal; 
	font-weight: lighter; 
}

/*
By default the colour of Bullet point list is RED, so the text appears as RED in the list.
wrap the text within &lt;li&gt; tag with a &lt;span&gt; and use this class as an attribute.
*/
.bulletText 
{
	color: Black;
}

/*******************************/
/*  Default.aspx page Heading  */
/*******************************/

.h1Green 
{
	font-size: x-large;
	/*font-size: 1.2em;*/
	font-weight: bold;
	line-height: 2em;
	color: #00901e;
	/*color: #99cc33;*/
}

.h2Green 
{
	font-size: x-large; /*font-size: 1.2em;*/;
	font-weight: 400;
	line-height: 2em;
	color: #00901e;
	/*color: #99cc33;*/
}

.h1Blue
{
	font-size: x-large;
	/*font-size: 1.2em;*/
	font-weight: bold;
	line-height: 2em;
	color: #008685;
	/*color: #00adef;*/
}

.h2Blue
{
	font-size: x-large;
	/*font-size: 1.2em;*/
	line-height: 2em;
	color: #008685;
	/*color: #00adef;*/
}

/*Used for pdf2xbrl software site*/
.borderTop01
{
	line-height: 0.2em;
	border-top-width: thick;
	border-top-color: #1d8d8e;
	border-top-style: solid;
	margin-bottom: 0.6em
}

.h1Software
{
	margin-bottom: 1.0em;
	
}


.h1SoftwareBlack
{
	font-size: x-large; /*font-size: 1.2em;*/;
	font-weight: bold;
	line-height: 1.2em;
	color: #000000;
}

.h1SoftwareRed
{
	font-size: x-large; /*font-size: 1.2em;*/;
	font-weight: bold;
	line-height: 1.2em;
	color: #ed1c24;
}

.h1SoftwareBlue
{
	font-size: x-large; /*font-size: 1.2em;*/;
	font-weight: bold;
	line-height: 1.2em;
	color: #1d8d8e;
}




/*This class is defined only for Default.aspx/Home page.*/
.h3 
{
	font-size: 1.2em;
	font-weight: bold;
	color: #ffff00;
}
/* End of Default.aspx page headings */


/*
This class is used to decorate the "*" which is used in front of required fields.
*/
.required 
{
	color:Red;
	font-size:9px;
}


.label 
{
	font-size: 11px;
	/*fonnt-size: 0.7em;*/
}

/*
This class is used to hide anything on the website.
Just wrap the tag(s) (that needs to be hidden) within &lt;span&gt; and assign this class to the &lt;span&gt;
*/
.hiddenText 
{
	display: none;
}

/***********************/
/*  Button Definition  */
/***********************/
/*.button 
{
	float: left;
	border: solid 1px #07519a;
	width: 115px;
}

.button .submit input
{
	border: solid 2px #ebf3fb;
	background-color: #07519a;
	color: #ebf3fb;
	width: 115px;
}*/

.submit 
{
	text-align: center;
}

.submit .button
{
	border: solid 1px #07519a;
	width: 120px;
	float: left;
}

.submit input 
{
	border: solid 2px #ebf3fb;
	background-color: #07519a;
	font-weight: bold;
	color: #ebf3fb;
	width: 120px;
}
/*End of button definition*/




</pre></body></html>