
H1 { font-size: 15pt; font-weight: none; vertical-align: middle; text-decoration: none; color: #000033; padding: 2px 1px 1px 2px;
	font-family: Times,arial, helvetica; border-style: solid; border-width: 0px 0px 1px 0px; border-color: #000033;}
H2 { font-size: 14pt; font-weight: none; color: #000033; font-family: Georgia, arial, helvetica; }
H3 { font-size: 11.5pt; font-weight: bold; color: #000033; font-family: Georgia, arial, helvetica; }
H4 { font-size: 11pt; font-weight: bold; color: #000033; font-family: Georgia, arial, helvetica; }
H5 { font-size: 10.5pt; font-weight: bold; color: #000033; font-family: Georgia, arial, helvetica; }
H6 { font-size: 10pt; font-weight: bold; color: #000033; font-family: Georgia, arial, helvetica; }

BODY { 
	background-color: #DCD19C; 
	margin: 0px;
	scrollbar-arrow-color:Black;
	scrollbar-highlight-color: #8B8783;
	scrollbar-shadow-color: #8B8783;
	scrollbar-base-color: #926538;
	scrollbar-face-color:#806E5B;
	scrollbar-3dlight-color:#806E5B;
	scrollbar-darkshadow-color:#806E5B;
	scrollbar-track-color: #BDAFA0;
	color: #000033;
}

.body_background { background: url(/images/body_background.jpg); }
.menu_background { background: url(/images/menu_background.jpg) repeat-y; }
.left_shade { background: url(/images/left_shade.jpg) repeat-y right top; }
.right_shade { background: url(/images/right_shade.jpg) repeat-y; }

.area_back { 
	font-size: 9pt; color: #000033; font-family: Verdana, arial, helvetica;
	padding: 8px 28px 28px 38px;
}

.area_table { text-decoration: none; font-size: 9pt; color: #000033; font-family: Verdana, 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: #52634C; text-decoration: underline; 
}
.area_table a:hover, .area_back a:hover { color: #52634C; text-decoration: none; }
.area_table b { font-family: arial, helvetica; color: #000033; }



.side_menu {  
	font-family: Georgia, arial, helvetica; 
	color: #FFFFFF;
	font-size: 9pt;
	font-weight: bold;
	
}
.side_menu a:link, .side_menu a:active, .side_menu a:visited { 
	color: #FFFFFF; 
	text-decoration: none;
	padding: 5px 3px 5px 0px;
	

}
.side_menu a:hover { 
	color: #FFFFFF; 
	text-decoration: none; 
	padding: 5px 3px 5px 0px;
	
}



.footer { font-family: arial, helvetica; color: #52634C; font-size: 6.5pt; padding: 2px 0px 2px 20px;  }
.footer a:link, .footer a:active, .footer a:visited { 
	color: #52634C; text-decoration: underline;
}
.footer a:hover { color: #52634C; text-decoration: none;}

.starburst { 
	background: url(/images/starburst.jpg) no-repeat;
	font-family: Times, arial; font-size: 14pt; font-weight: bold; color: #FFFFFF;
}

INPUT { font-size: 9pt; font-weight: none; font-family: arial, helvetica; color: #000033; }
TEXTAREA { font-size: 9pt; font-weight: none; font-family: arial, helvetica; color: #000033;}
SELECT { font-size: 9pt; font-weight: none; font-family: arial, helvetica; color: #000033;}
OPTION { font-size: 9pt; font-weight: none; font-family: arial, helvetica; color: #000033; }
TD { font-size: 9pt;}
TH { font-size: 9pt; }
IMG { font-size: 9pt; color: green; }
ALT { font-size: 9pt; color: green; }

.header { color: #000033; font-family: Times, arial; font-size: 16pt; font-weight: bold; text-decoration: none; }
.names { font-family: Times, arial; font-size: 13pt; font-weight: bold; text-decoration: none; }
.header_logo { background: #000033 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: 9pt; font-weight: none;}
TH.border { color: #FFFFFF;  font-size: 9pt; font-weight: bold; text-align: right; background-color: #000033;}

/*Menu code*/
ul.makeMenu, ul.makeMenu ul {
  width: 101px;                /* sets the size of the menu blocks */
  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 */
	
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  border: 0px solid #FFFFFF;   /* puts a border around the links */
  border-width: 0px 0px 1px 0px;  /*set border bottom to 1px, everything else 0px*/
  border-color: #52634C;
  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 */
  padding: 0px;
   


}
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: 101px;                 /* 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 {
  /*background-color: #DDCEAF; */   /* 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 */
 width: 140px;
 text-align: left;
  background-color: #52634C;
  border-top: 0px solid #9C7E4B;
  padding: 2px;
  margin: 0px 0px -2px 0px;
  text-align: left;
  border: 2px solid #FFFFFF;
  font-size: 10px;
  
}
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 */
  width: 140px;
  text-align: left;
    background-color: #52634C;
    border-top: 0px solid #9C7E4B;
    padding: 2px;
    font-size: 10px;
  margin: 0px 0px -2px 0px;
border: 2px solid #FFFFFF;

}
/* 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;*/  background-color: #30412A;} /* color LINK TEXT HOVER COLOR! */
ul.makeMenu li:hover > a { /*color: #000; */ } /* supports links in branch headings - must not be display: block; */
