/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0px;
 padding: 0px;
 width: 200px;
 list-style: none;
 z-index:100;
 position:relative;
 border: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 border:1px solid #2F80BD;
 left: 201px;
 top:2px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 border:none;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 4px 15px 4px 30px;
 color: #0067AC;
 text-decoration: none;
 border: none;
 border-top:1px solid #f2f2f2;
 border-bottom: 1px solid #c3c3c3;
 margin: 0; 
 font-family:verdana;
 font-weight:normal;
 font-size:10pt;
 background: #E5E5E5 url(../images/sitepicts/design/menu_off.jpg) no-repeat;
}

/*
 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 li a:hover, .menulist li a:focus, .menulist li a:active, .menulist li a.highlighted:hover {
 display: block;
 text-decoration: none;
 margin: 0;
 padding: 4px 15px 4px 30px;
 color: #fff;
 font-family:verdana;
 font-weight:normal;
 font-size:10pt;
 background: #00416B url(../images/sitepicts/design/menu_over.jpg) no-repeat;

}

 .menulist li a.highlighted {
 display: block;
 text-decoration: none;
 margin: 0; 
 padding: 4px 15px 4px 30px;
 color: #FFF;
 font-family:verdana;
 font-weight:normal;
 font-size:10pt;
 background: #00416B url(../images/sitepicts/design/menu_over.jpg) no-repeat;

}


.menulistsub li a {
 display: block;
 text-decoration: none;
 border: none;
 border-bottom:1px solid #ACCCE5;
 border-top:1px solid #EBF3F9;
 margin: 0; 
 padding: 3px 8px 3px 2px;
 color: #333333;
 font-family:verdana;
 font-weight:normal;
 font-size:10pt;
 background: #D6E6F2;
  /* height: 22px; */
}

.menulistsub li a:hover, .menulistsub li a:focus, .menulistsub li a:active, .menulistsub li a.highlighted:hover {
 display: block;
 text-decoration: none;
 border: none;
 border-bottom:1px solid #ACCCE5;
 border-top:1px solid #EBF3F9;
 margin: 0; 
 padding: 3px 8px 3px 2px;
 color: #333333;
 font-family:verdana;
 font-weight:normal;
 font-size:10pt;
 background: #E0ECF5;
  /* height: 22px; */
}

.menulistsub li a.highlighted {
 display: block;
 text-decoration: none;
 border: none;
 border-bottom:1px solid #ACCCE5;
 border-top:1px solid #EBF3F9;
 margin: 0; 
 padding: 3px 8px 3px 2px;
 color: #333333;
 font-family:verdana;
 font-weight:normal;
 font-size:10pt;
 background: #E0ECF5;
  /* height: 22px; */
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */
