	<Style>


/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {

 color:#00395A;
 list-style: none;
 font-size:8pt;
 background: #dedede left repeat-y;
 
 }
 
 .bigmenulist, .bigmenulist ul {

 color:#00395A;
 list-style: none;
 font-size:8pt;
 background: #dedede left repeat-y;
 
 }

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 border:#000000 1px solid;
 color:#00395A;
 margin:0px;
 left: 148px;
 
}
/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.bigmenulist ul {
 display: none;
 position: absolute;
 top: 0;
 border:#000000 1px solid;
 color:#00395A;
 margin:0px;
 left: 148px;
 width:130px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 color:#00395A;
 border-Bottom: 1px solid #B7B5A5;
 
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 5px;
 color:#00395A;
 text-decoration: none;
 background-color:#dedede;
 width:100%;
 
}

.bigmenulist li {
 position: relative;
 color:#00395A;
 border-Bottom: 1px solid #B7B5A5;
 
}

/* Links inside the menu */
.bigmenulist li a {
 display: block;
 padding: 3px 4px 3px 5px;
 color:#00395A;
 text-decoration: none;
 background-color:#dedede;
 width:100%;
 
}

/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
 border-width: 0;
 margin: 0px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #00395A;
 background-color: #ffffff;
 padding: 3px 4px 3px 5px;
}

.menulist a.highlighted {
 color: #00395A;
 padding: 3px 4px 3px 5px;
 background-color: #ffffff;
}

.bigmenulist a:hover, .bigmenulist a.highlighted:hover, .bigmenulist a:focus {
 color: #00395A;
 background-color: #ffffff;

}

.bigmenulist a.highlighted {
 color: #00395A;

 background-color: #ffffff;
}
/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
float:right;
font-weight:bold;

}

/* End Hacks */</style>