<STYLE>
<!--

H1 { font-size: 10pt; font-weight: bold; color: #010066; font-family: arial, helvetica; }
H2 { font-size: 16pt; font-weight: bold; color: #000000; font-family: arial, helvetica; }
H3 { font-size: 14pt; font-weight: bold; color: #000000; font-family: arial, helvetica; }
H4 { font-size: 12pt; font-weight: bold; color: #000000; font-family: arial, helvetica; }
H5 { font-size: 12pt; font-weight: bold; color: #010066; font-family: arial, helvetica; }
H6 { font-size: 10pt; font-weight: bold; color: #010066; font-family: arial, helvetica; }

BODY { background-color: #FFFFFF; color: #000000; font-size: 8pt; font-family: arial, helvetica; margin: 0;}

HR { color: #8080B2;}

.area_table {background: #FFFFFF url(../images/background_school.jpg) no-repeat top center; color: #000000; padding: 3px;}
.area_table a:link { color: #445B9C; text-decoration: underline; font-weight: bold;}
.area_table a:active { color: #445B9C; text-decoration: underline; font-weight: bold;}
.area_table a:visited { color: #445B9C; text-decoration: underline; font-weight: bold; }
.area_table a:hover { color: #660000; text-decoration: underline; font-weight: bold;}

.top_menu {background-color: #010066; vertical-align: middle;
		font-family: arial, helvetica; font-size: 8pt; font-weight: none; text-decoration: none; padding: 2px 15px 2px 15px;}
.top_menu  a:link { color: #FFFFFF; text-decoration: none; padding: 2px 15px 2px 15px;}
.top_menu  a:active { color: #FFFFFF; text-decoration: none; padding: 2px 15px 2px 15px;}
.top_menu  a:visited { color: #FFFFFF; text-decoration: none; padding: 2px 15px 2px 15px;}
.top_menu  a:hover { color: #FFFFFF; background-color: #8080B2; padding: 2px 15px 2px 15px;}

.footer {background-color: #919195; font-family: arial, helvetica;}
.footer a:link { color: #010066; text-decoration: none; }
.footer a:active { color: #010066; text-decoration: none; }
.footer a:visited { color: #010066; text-decoration: none; }
.footer a:hover { color: #010066; text-decoration: underline; }

.area a:link { color: #000000; text-decoration: none; font-weight: bold;}
.area a:active { color: #000000; text-decoration: none; font-weight: bold;}
.area a:visited { color: #000000; text-decoration: none; font-weight: bold;}
.area a:hover { color: #445B9C; text-decoration: none; font-weight: bold;}


TD { color: #000000;  font-size: 8pt; }
TH { color: #660000;  font-size: 8pt; font-weight:bold; }
UL { color: 000000;  font-size: 8pt; font-weight:bold; }
LI { color: 000000;  font-size: 8pt; font-weight: normal; }

INPUT { font-size: 8pt;}
TEXTAREA { font-size: 8pt;}
SELECT { font-size: 8pt;}
OPTION { font-size: 8pt; }
IMG { font-size: 8pt; color: green; }
ALT { font-size: 8pt; color: green; }

.border {border-style: solid; border-width: 2px 2px 2px 2px; border-color: #010066; background-color: #FFFFFF;}
TD.border { color: 000000;  font-size: 8pt; font-weight: none; background-color: #FFFFFF;}
TH.border { color: FFFFFF;  font-size: 8pt; font-weight: none; text-align: right; background-color: #919195;}

.light_purple { background-color: #8080B2; }
.header { font-size: 10pt; font-weight: bold; color: #010066; font-family: arial, helvetica; }
.feature { background-color: #FFFFFF; color: #010066;  padding: 1px 420px 2px 2px; font-size: 12pt; font-weight: bold;
		margin: 1px 1px 10px 1px; border-style: solid; border-width: 0px 0px 2px 0px; border-color: #8080B2; }
.names { font-size: 12pt; }

TD.main { color: F8FFAB;  font-size: 8pt; font-weight: none; background-color: #EEEEEE;}
TH.main { color: F8FFAB;  font-size: 8pt; font-weight: none; text-align: right;}


/*Menu code*/
ul.makeMenu, ul.makeMenu ul {
  width: 125px;                /* sets the size of the menu blocks */
  /*border: 1px solid #000;*/  /* puts a black border around the menu blocks */
  background-color: #FFFFFF;   /* 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 */
}
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 */
  color: #010066;              /* sets the default font colour to white */ 
  font-family: arial; 
  font-weight: none; 
  font-size: 8pt; 
  padding: 2px 2px 2px 5px;    /* padding around the link text*/

}
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: 125px;                 /* 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: #919195;   /* gives the active menu items a yellow background LINK BACKGROUND HOVOR COLOR!*/
  color: #FFFFFF;              /* 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 */
  background-color: #8080B2;
}
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 */
   background-color: #8080B2;
}
/* and some link styles */
ul.makeMenu li a { color: #010066; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #FFFFFF; background-color: #919195;} /* color LINK TEXT HOVER COLOR! */
ul.makeMenu li:hover > a { color: #FFFFFF;} /* supports links in branch headings - must not be display: block; */
--></style>
<!--[if gte IE 5]>
<style type=text/css>
/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url( <?php echo $home_domain; ?>/elements/IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector */
	display: none; position: absolute; top: 2px; left: 120px; background-color: #8080B2;/* CHANGE PX FOR SUBMENU POSITION IN IE */
}
</style>
<![endif]-->
