<style>

/*embedding - inside doctype
external - this one
import - url
inline - within tag*/


/*inherited links*/

/*both body:link and a:link are required for color*/

body:link
 {
	color: #0000FF;			/*links sud be of gray color*/
	text-decoration: none;
 }

a:link
 {
	text-decoration: none;
	color: #0000FF;			/*links sud be of gray color*/
 }

a:active
 {
	text-decoration: none;
	color: #FF8C00;			/*active links sud be of pink color*/
 }

a:visited
 {
	text-decoration: none;
	/*color: #5C5A5A;			/*visited links sud also be of gray color*/
	color: #2AC989;			/*visited links sud be of violet color - 1E6940*/
 }

a:hover
 {
	text-decoration: none;
	color: #0090FF; 		/*mouse over links sud produce pink color*/
 }





/*-----------------------------------------------------------
never create comments using // outside
classes to be used as <p class=net> in HTML - to be defined
-----------------------------------------------------------*/

.blue
{
	color: #0081E3;
	/*color: #00CCFF;*/
}

.green
{
	color: #4AA380;
}

.red
{
	color: #FF0000;
}

.yellow
{
	color: #FFFF00;
}

.magenta
{
	color: #BE0266;
}

.b
{
	font-weight:bold;
}

.u
{
	text-decoration: underline
}

.strike
{
	text-decoration: line-through
}

.net_body
 {
	text-align:justify;
	/*font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;*/
	font-family : Arial, Times, Verdana, Geneva, Helvetica, sans-serif;
	color: #000000;
	margin: 0px;
	font-size: 11pt;
 }

.net_body_compliment
 {
	text-align:justify;
	font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;
	color: #FFFFFF;
	margin: 0px;
	font-size: 14pt;
 }


.net_table_menu_content
 {
	margin-left: 10px;
	margin-right: 10px;
 }


.net_menu_top_bottom
 {
	text-align:justify;
	/*font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;*/
	font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;
	color: #000000;
	margin: 0px;
	font-size: 14pt;
	/*background-color: #000000;*/
 }

.net_menu
 {
	text-align:justify;
	/*font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;*/
	font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;
	color: #000000;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	font-size: 14pt;
	/*background-color: #000000;*/
 }

.net_title
 {
	font-family : Times, Verdana, Geneva, Helvetica, sans-serif;
 }

.net_content
 {
	text-align: justify;
	/*font-family : Times, Arial, Verdana, Geneva, Helvetica, sans-serif;*/
	font-family : Arial, Times, Verdana, Geneva, Helvetica, sans-serif;
	color: #000000;
	margin-right: 25px;
	margin-left: 20px;
	font-size: 12pt;
 }

.net_border_ceiling_left
 {
	border-top-style: ridge;
	border-bottom-style: double;
	border-top-color: #969696;
	border-left-color: #969696;
	border-bottom-color: #0000FF;
 }

.net_border_top_left
 {
	border-top-style: ridge;
	border-left-style: groove;
	border-bottom-style: double;
	border-top-color: #969696;
	border-left-color: #969696;
	border-bottom-color: #0000FF;
 }

.net_border_menu
 {
	border-left-style: groove;
	border-bottom-style: ridge;
	border-left-color: #969696;
	border-bottom-color: #969696;
 }

.net_border_ceiling_center
 {
	border-top-style: ridge;
	border-left-style: double;
	border-right-style: groove;
	border-bottom-style: double;
	border-top-color: #969696;
	border-left-color: #2B00FF;
	border-right-color: #969696;
	border-bottom-color: #0000FF;
 }

.net_border_top_center
 {
	border-top-style: ridge;
	border-left-style: double;
	border-right-style: groove;
	border-bottom-style: double;
	border-top-color: #969696;
	border-left-color: #2B00FF;
	border-right-color: #969696;
	border-bottom-color: #0000FF;
 }

.net_border_center_content
 {
	border-bottom-style: ridge;
	border-left-style: double;
	border-right-style: groove;
	border-bottom-color: #969696;
	border-left-color: #2B00FF;
	border-right-color: #969696;
 }

.net:link
 {
	text-decoration: none;
 }

.net:active
 {
	text-decoration: none;
 }

.net:visited
 {
	text-decoration: none;
 }

.net:hover
 {
	text-decoration: none;
	font-weight: bold;
 }

.net2
 {
	font-family: arial,verdana;
	text-decoration: none;
 }

.net2:link
 {
	font-family: arial,verdana;
	text-decoration: none;
 }

.net2:active
 {
	font-family: arial,verdana;
	text-decoration: none;
 }

.net2:visited
 {
	font-family: arial,verdana;
	text-decoration: none;
 }

.net2:hover
 {
	font-family: arial,verdana;
	text-decoration: none;
 }

.normal
 {
	font-family: times new roman;
 }

/*ids to be applied as <p id="pop">*/
#pop
 {
	font-size: 11px;
	color: #000000;
	font-family: arial;
 }

#blueB
 {
	color: #00CCFF;
 }

#u
 {
	text-decoration: underline;
 }

#b
 {
	font-weight: bold;
 }
</style>