h1 {color: #D67389; font-weight: normal; font-size: 24pt;}
h2 {color: #768799; font-weight: normal; font-size: 24pt;}

body {
   background: #FFFFFF url(/images/header_background.jpg) repeat-x top;
   margin:0px;
   padding:0px;
   color: #A28A78;
}

img {
   border: 0px;
}
/* Header and ad stuff **************************************************/
.header {
   background: transparent;
   margin:0px;
   padding:0px;
   border: 0px;
}

.header_ad {
   background: transparent;
}

.header_ad a {
   display: block;
   width: 300px;
   height: 140px;
}

/* Side menu stuff **************************************************/
.side_menu {
   background:url(/images/menu_back.jpg) no-repeat;
   width: 222px;
   padding: 0px;
   padding-top: 45px;
   padding-left: 10px;
   vertical-align: top;
   color: #768799;
   text-decoration: none;
   font-size: 10pt;
}

/* Main Body **************************************************/
.main_body {
   background: transparent;
   width: 415px;
   /*height: 100%;*/
   padding-top: 26px;
   padding-left: 25px;
   vertical-align: top;
}

.main_table {
   height:100%;
   padding:0px;
   margin:0px;
}

/* Footer **************************************************/
.index_footer {
   border-top: solid 2px #d4d6d6;
   background: url(/images/footer_background.jpg) repeat-x bottom;
   height: 55px;
   margin:0px;
   padding:0px;
   color: #B5A293;
   text-decoration: none;
   font-size: 9pt;
   text-align: center;
}

.index_footer a {
   color: #B5A293;
}

/*********************Menu code*******************************8*/
ul.makeMenu {
  width: 197px;                /* sets the size of the menu blocks */
  /*border: 1px solid #000;  puts a black border around the menu blocks */
  /*background: #ffffff;    makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding: 0px;           /* stops the usual indent from ul */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
text-align: left;
vertical-align: top;

}

ul.makeMenu ul {
  width: 225px;                /* sets the size of the menu blocks */
  border: 1px solid #000;  /*puts a black border around the menu blocks */
  background: #ffffff;    /*makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding: 0px;           /* stops the usual indent from ul */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
text-align: left;
vertical-align: top;
border: solid #cccccc 1px;
}

ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  /*border: 1px solid red;    puts a border around the links */
  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: #768799;              /* sets the default font colour to white */ 
  font-family: arial; 
  font-weight: normal; 
  font-size: 8pt; 
   width: 100%;
   height: 22px;
   vertical-align: middle;
   text-decoration: none;
   font-size: 10pt;
}
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: 195px;                 /* 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 */
  border: solid #cccccc 1px;
  background: white;
        /* CHANGE PX FOR SUBMENU POSITION IN NETSCAPE/FIREFOX */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #FDF1EE;    /* gives the active menu items a yellow background LINK BACKGROUND HOVOR COLOR!*/
  color: #768799;               /* 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;  text-align: left;             /* 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;  text-align: left;             /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a { color: #768799; display: block; width: 100%; text-decoration: none; padding-left:19px;}
ul.makeMenu li ul li a { color: #768799; display: block; width: 100%; text-decoration: none; padding-left:5px;}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #768799;} /* color LINK TEXT HOVER COLOR! */
ul.makeMenu li:hover > a { color: #768799;} /* supports links in branch headings - must not be display: block; */
