/*.sidebar li:hover div,
.sidebar div li:hover div { left:100px; top: -20px;
}
*/
div.nav-text {
/*    color: #433636;*/
    font-family: arial,sans-serif;
    font-size: 0.75em; 
/*      margin: 0em 0em 0em -40px;*/
    /*padding-left: 0;*/
    text-align: left;
    width: 100%;
    font-size:100%;
    /*float:left;*/
}
div.nav-text a {
    color:#0068CF;          /*Color for text of non-selected item */
    background-color: #F6E49C; /* background for non-Selected item*/
    border: 1.5px solid #8A6F00; /*border between cells */
    display: block;
    padding: 0.2em 0.5em 0.2em 0.5em ;
    clear: left;
    text-decoration: none;  
}

div.nav-text a.currentnav {
    color:#00117F;          /*Color for text of selected item */
    background-color: #DDC04C; /* background for Selected Item */ 
    border: 1.5px solid; 
    border-color: #605a4c; 
    display: block; 
    padding: 0.2em 0.5em 0.2em 0.5em;
    text-align: right;
}

div.nav-text a:hover { 
    background-color: #FBF1C9; /*#cddada; 72C9FF */
    color: #1DA9FF;
}
div.nav-text a:active { /*border-color: #cddada;*/ /*border: 1px solid;*/}
div.nav-text a:visited {/* border-color: #cddada;*/  /*border: 1px solid;*/}

/* main box */
ul.nav, ul.nav ul {
    width: 150px;                 /* sets the size of the menu blocks */
    /*border: 1px solid #605A4C;      /* puts a black border around the menu blocks */
    /*background-color: #EDEDED;      /* 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.nav 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 */
    z-index:2;
}
ul.nav 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: 167px;                  /* 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 */
}
ul.nav li:hover, ul.nav li.CSStoHighlight {
    background-color: #DDC04C;      /* gives the active menu items a yellow background */
    color: #000;                 /* makes the active menu item text black */ 
}
ul.nav 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.nav 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 */
}
/* and some link styles */
ul.nav li a { color: #433636; display: block; width:100%; text-decoration: underline; }
ul.nav li a:hover, ul.nav li a.CSStoHighLink { color: #000; }
ul.nav li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */
/*</style>
<!--[if gt IE 5.0]><![if lt IE 7]>
<style type="text/css">*/
/* that IE 5+ conditional comment makes this only visible in IE 5+ */
/* the behaviour to mimic the li:hover rules in IE 5+ */
/*ul.nav li {
        behavior: url( IEmen.htc );
}
*/
ul.nav ul {  /* copy of above declaration without the > selector, except left position is wrong */
    display: none; 
    position: relative; /*absolute;*/
    top:-1px; 
    left: 167px;
}
/*</style>
<![endif]><![endif]-->*/
