﻿body {
	background-image: url('/images/bgpattern_4.jpg');
	background-repeat: repeat;
	
	font-family:Lucida Sans Unicode,Arial,sans-serif;font-size:10pt;
}

*{padding:0px;}

BODY,TD,TH,DIV,SPAN,P,A,TR{font-family:Lucida Sans Unicode,Arial,sans-serif;font-size:9pt;}

a:link {text-decoration: none;color:#000000;}
a:visited {text-decoration: none;color:#000000;}
a:active {text-decoration: none;color:#000000;}
a:hover {text-decoration: none;color:#000000;text-decoration:underline;}

a.Menu2:link {text-decoration: none;color:#000000;padding:16px;font-size:10pt;}
a.Menu2:visited {text-decoration: none;color:#000000;padding:16px;font-size:10pt;}
a.Menu2:active {text-decoration: none;color:#9d0c0b;padding:16px;font-size:10pt;}
a.Menu2:hover {text-decoration: none;color:#9d0c0b;text-decoration:none;padding:16px;font-size:10pt;}

a.Menu3:link {text-decoration: none;color:#000000;padding:10px;font-size:10pt;}
a.Menu3:visited {text-decoration: none;color:#000000;padding:10px;font-size:10pt;}
a.Menu3:active {text-decoration: none;color:#9d0c0b;padding:10px;font-size:10pt;}
a.Menu3:hover {text-decoration: none;color:#9d0c0b;text-decoration:none;padding:10px;font-size:10pt;}

a.Menu1:link {text-decoration: none;color:#000000;font-size:15px;font-weight:bold;}
a.Menu1:visited {text-decoration: none;color:#000000;font-size:15px;font-weight:bold;}
a.Menu1:active {text-decoration: none;color:#9d0c0b;font-size:15px;font-weight:bold;}
a.Menu1:hover {text-decoration: none;color:#9d0c0b;text-decoration:none;font-size:15px;font-weight:bold;}


.title{font-size:18pt;color:#990000;text-align:center;}
.bottomborder{border-bottom:1px solid #a4a4a4;}
.title{font-family:Georgia;}
.SubMenuStyle{background-color:#003366;}
.Error{font-weight:bold;color:#ff0000;}
.NavigationBackground{background-image:url('/images/menubg.jpg');background-repeat:no-repeat;width:220px;}
.SideMenuTemplate{width:252px;height:240px;background-image: url('/images/FullNavBG.jpg'); background-repeat:no-repeat;padding-top:17px;}


/*
___________________________________________________________________________________
The following styles are used by common CSS-based navigation systems
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
*/

ul.makeMenu, ul.makeMenu ul 
{
   list-style: none; padding: 0;  margin: 0;  width: 160px;                            /* sets the size of the menu blocks */
   height:1px;
  /*border: 1px solid #000;       puts a black border around the menu blocks */
  /*background-color: #8aa;       makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  
                                /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
                                /* Opera 7 final's margin and margin-box model cause problems */
  vertical-align:top;
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  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: #fff;                 /* sets the default font colour to white */
  float:left;
  cursor:hand;
  width:160px;
  padding-top:2px;
  padding-bottom:5px;
  padding-right:5px;
  top:0px;
  left:0px;
  width:130;
}
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: 5px;                    /* position slightly lower than the parent menu item */
  left: 200px; 
  background-color: #FFF8E5;    /* 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 */
 height:155px;
 top: 0px;left: auto;left:130px;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  /* background-color: #9d0c0b;      gives the active menu items a yellow background */
  color: #9d0c0b;                 /* 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 */
}
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 */
   color: #9d0c0b;
}
/* and some link styles */
ul.makeMenu li a { color: #fff; text-decoration: underline;height:22px;padding-left:5px;}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #9d0c0b; }
ul.makeMenu li:hover > a { color: #9d0c0b; } /* supports links in branch headings - should not be display: block; */

/*
_____________________________________________________________________________________
these style and class definitions are unique to this site
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
*/



/*
___________________________________________________________________________________
The following styles are used by common CSS-based navigation systems
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
*/

ul.makeMenu2, ul.makeMenu2 ul 
{
   list-style: none; padding: 0;  margin: 0;  width: 160px;                            /* sets the size of the menu blocks */
   height:1px;
  /*border: 1px solid #000;       puts a black border around the menu blocks */
  /*background-color: #8aa;       makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  
                                /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
                                /* Opera 7 final's margin and margin-box model cause problems */
  vertical-align:top;
}
ul.makeMenu2 li {
  list-style-type: none;       /* removes the bullet points */
  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: #fff;                 /* sets the default font colour to white */
  float:left;
  cursor:hand;
  width:160px;
  padding-top:2px;
  padding-bottom:5px;
  padding-right:5px;
  top:0px;
  left:0px;
  width:130;
}
ul.makeMenu2 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: 5px;                    /* position slightly lower than the parent menu item */
  left: 200px; 
  background-color: #FFF8E5;    /* 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 */
 height:130px;
 top: 0px;left: auto;left:130px;
}
ul.makeMenu2 li:hover, ul.makeMenu2 li.CSStoHighlight {
  /* background-color: #9d0c0b;      gives the active menu items a yellow background */
  color: #9d0c0b;                 /* makes the active menu item text black */ 
}
ul.makeMenu2 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 */
}
ul.makeMenu2 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 */
   color: #9d0c0b;
}
/* and some link styles */
ul.makeMenu2 li a { color: #fff; text-decoration: underline;height:22px;padding-left:5px;}
ul.makeMenu2 li a:hover, ul.makeMenu2 li a.CSStoHighLink { color: #9d0c0b; }
ul.makeMenu2 li:hover > a { color: #9d0c0b; } /* supports links in branch headings - should not be display: block; */

/*
_____________________________________________________________________________________
these style and class definitions are unique to this site
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
*/