.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: white;
}


/* ######### Default class for drop down menus ######### */

.anylinkcss{
font: normal 10px Verdana;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 90;
list-style-type: none;
background:#deedf8;
border: 1px solid black;
border-bottom-width: 0;
visibility: hidden;
z-index: 100;
}

.anylinkcss ul{
padding: 3px 0;
margin: 0;
background-color: #deedf8;
border: 1px solid #bebebe;
}

.anylinkcss ul li{
display: inline;
}

.anylinkcss ul li a{
display: block;
width: 250px; /*width of menu (not including side paddings)*/
background-color: #deedf8;
text-decoration: none;
text-align: left;
padding: 5px 7px;
border-bottom: 1px solid black;
color: #0000cc;
}

.anylinkcss a:hover{ /*hover background color*/
background: brown;
color: white;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols{
position: absolute;
text-align: left;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px;
font: normal 12px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #DEFFCA;
}

.anylinkcsscols .column{
width: 130px;
float: left;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcsscols li{
padding-bottom: 3px;
}

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}


/* ######### class for arrows ######### */

.downarrowpointer{ /*CSS for "down" arrow image added to top menu items*/
padding-left: 4px;
border: 0;
}

.rightarrowpointer{ /*CSS for "right" arrow image added to drop down menu items*/
padding-left: 4px;
border: 0;
}



/* ######### class for top level navigation table ######### */

table.navi { 
width: 864px;
background-color: #deedf8;
border: 1px #000000 solid;
border-collapse: collapse;
border-spacing: 0px; 
align: center;
top: 90;
}


td.naviMain { 
background-color: #deedf8;
border: 1px #000000 solid;
font-family: Verdana;
font-weight: bold;
font-size: 12px;
color: #404040; 
}

td.navi a, a:link, a:visited, a:active {
  text-decoration: none;
  color: #0000ff;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  }
td.navi a:hover {
  text-decoration: underline;
  color: #0000ff;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  cursor: pointer;
  }

