H1 { font-size: 14pt; font-weight: bold; font-style: italic; text-decoration: none; color: #555555; padding: 2px 1px 1px 2px;
	font-family: arial, helvetica; border-style: solid; border-width: 0px 0px 3px 0px; border-color: #A1CCEA;
	}
H2 { font-size: 14pt; font-weight: none; color: #555555; font-family: Times, arial, helvetica; }
H3 { font-size: 11.5pt; font-weight: bold; color: #555555; font-family: Times, arial, helvetica; }
H4 { font-size: 11pt; font-weight: bold; color: #555555; font-family: Times, arial, helvetica; }
H5 { font-size: 10.5pt; font-weight: bold; color: #555555; font-family: Times, arial, helvetica; }
H6 { font-size: 10pt; font-weight: bold; color: #555555; font-family: Times, arial, helvetica; }

BODY { 
	background: #E8EFF7 url(/images/background.jpg) repeat-x; 
	margin: 0px;
	scrollbar-arrow-color:555555;
	scrollbar-highlight-color:#3C95D3;
	scrollbar-shadow-color:rgb(245,245,245);
	scrollbar-base-color:rgb(204,204,204);
	scrollbar-face-color:EEF5FB;
	scrollbar-3dlight-color:999999;
	scrollbar-darkshadow-color:999999;
	scrollbar-track-color:rgb(204,204,204);	
	font-size: 9pt; color: #444444; font-family: arial, helvetica;
}

.area_background { background: #FFFFFF url(/images/area_back.jpg) repeat-x bottom; }
.left_shade { background: #EEF5FB url(/images/left_shade.jpg) repeat-y right; }
.right_shade { background: #EEF5FB url(/images/right_shade.jpg) repeat-y; }

.area_back { 
	background: url(/images/h1_back.jpg) no-repeat
	font-size: 9pt; color: #444444; 
	font-family: arial, helvetica;
	padding: 0px 28px 28px 28px;
}

.area_table { text-decoration: none; font-size: 9pt; color: #444444; font-family: arial, helvetica;}
.area_table a:link, .area_table a:active , .area_table a:visited,
.area_back a:link, .area_back a:active , .area_back a:visited {
	color: #001758; text-decoration: none; 
}
.area_table a:hover, .area_back a:hover { color: #445B9C; text-decoration: none; }
.area_table b { font-family: arial, helvetica; color: #A75F93; }


.side_menu { 
	font-family: arial, helvetica; 
	color: #333333; 
	font-size: 8pt;
	font-weight: bold;
}
.side_menu a:link, .side_menu a:active, .side_menu a:visited { 
	color: #333333; 
	text-decoration: none;
	
}
.side_menu a:hover { 
	color: #555555; 
	text-decoration: underline;
	
}



.footer { 
	background: #4278B0 url(/images/footer.jpg) repeat-x; 
	font-family: arial, helvetica; 
	color: #FFFFFF; 
	font-size: 7pt;
	padding: 10px 10px 15px 10px;
}
.footer a:link, .footer a:active, .footer a:visited { 
	color: #FFFFFF; text-decoration: underline;
}
.footer a:hover { 
	color: #FFFFE7; text-decoration: none;
}

INPUT { font-size: 8pt; font-weight: none; font-family: arial, helvetica; color: #555555; }
TEXTAREA { font-size: 8pt; font-weight: none; font-family: arial, helvetica; color: #555555;}
SELECT { font-size: 8pt; font-weight: none; font-family: arial, helvetica; color: #555555;}
OPTION { font-size: 8pt; font-weight: none; font-family: arial, helvetica; color: #555555; }
TD { font-size: 8pt;}
TH { font-size: 8pt; }
IMG { font-size: 9pt; color: green; }
ALT { font-size: 8pt; color: green; }

.dash { color: #DEE24B;}
.pic { border-style: solid; border-width: 2px; border-color: #444444;  }
.header { color: #444444; font-family: arial; font-size: 12pt; font-weight: bold; font-style: italic; text-decoration: none; }

.header_logo { background: #555555 url(/images/header.jpg) no-repeat; 
		color: #900028; font-size: 10pt; font-weight: bold; font-family: Times, arial, helvetica;}

.border {border-style: solid; border-width: 1px; border-color: #444444; background-color: #FFFFFF;}
TD.border { color: #000000;  font-size: 8pt; font-weight: none; background-color: #FFFFFF;}
TH.border { color: #333333;  font-size: 8pt; font-weight: bold; text-align: right; background-color: #A5C2DA;}

/*Menu code*/
ul.makeMenu, ul.makeMenu ul {
  width: 156px;                /* sets the size of the menu blocks */
  /*border: 1px solid #000;*/  /* puts a black border around the menu blocks */
  /*background-color: #630000;*/   /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
	text-align: right;
	
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  border: 1px solid #FFFFFF;   /* puts a border around the links */
  border-width: 0px 0px 1px 0px;  /*set border bottom to 1px, everything else 0px*/
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
 border-bottom: 1px dashed #999999;
 padding: 2px 2px 2px 1px;

}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 2px;                    /* position slightly lower than the parent menu item */
  left: 157px;                 /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
        /* CHANGE PX FOR SUBMENU POSITION IN NETSCAPE/FIREFOX */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  border-bottom: 1px dashed #999999;   /* gives the active menu items a yellow background LINK BACKGROUND HOVOR COLOR!*/
  color: #000;                 /* makes the active menu item text black */
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
  text-align: left;
  background-color: #A5C2DA;
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
  text-align: left;
  background-color: #A5C2DA;
  border-bottom: 1px dashed #999999;
}
/* and some link styles */
ul.makeMenu li a { /*color: #fff;*/ display: block; width: 100%; /*text-decoration: none;*/ }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {/* color: #000000;*/ } /* color LINK TEXT HOVER COLOR! */
ul.makeMenu li:hover > a { /*color: #000; */} /* supports links in branch headings - must not be display: block; */
