/*	New links								*/
sup.new {
font-size: small;
color: #ff9900;
font-weight: bold;
font-family: "verdana", arial";
}

/*	Popular links								*/
sup.pop {
font-size: x-small;
font-weight: bold;
font-family: "verdana", arial";
}


/*	Priority Indicator							*/
sup.priority {
font-weight : bold; 
font-size: .93em; 
color : red;
font-family: "verdana", arial";
}

/*	Exchange Links 	not using...							*/
sup.exchange {
font-size: x-small;
color: #009900;
font-weight: bold;
font-family: "verdana", arial";
}


/* These are for home page category Listings  */
/* td.catlist { font-family: "verdana", arial"; font-size: normal; font-weight: bold; }  */

/*	Definition list									*/
/* dl {color: #000000; font-family: "verdana", arial"; font-size: normal; font-weight: bold; } */

/* ----- this is the default for any links that do not specify a class -------- */
a:link    { text-decoration: underline; color : blue}
a:visited { text-decoration: underline; color : blue}
a:active  { text-decoration: underline; color : blue}
a:hover   { text-decoration: underline; color : blue}

/* ----- email class so it look like other links, but is cloaked  ------ */
a.email:link    { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC}
a.email:visited { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC}
a.email:active  { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC}
a.email:hover   { text-decoration: underline; font-weight : bold; font-size: .93em; color : #9b5455}


/* ----- designed to be same colors as css dropdown stuff, when class=link is specified on normal links ------ */
a.link:link    { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC}
a.link:visited { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC}
a.link:active  { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC}
a.link:hover   { text-decoration: underline; font-weight : bold; font-size: .93em; color : #9b5455}


/* ----- This controls links on category pages as defined in links.html template -------- */
a.directoryentry:link    { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC} /* qqq */
a.directoryentry:visited { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC} /* qqq */
a.directoryentry:active  { text-decoration: underline; font-weight : bold; font-size: .93em; color : #6567DC} /* qqq */
a.directoryentry:hover   { text-decoration: underline; font-weight : bold; font-size: .93em; color : #9b5455} /* qqq */

/* ----- This controls the 3 priority small links allowed -------- */
a.prioritysmall:link    { text-decoration: underline; font-weight : normal; font-size: .75em; color : #666666;}
a.prioritysmall:visited { text-decoration: underline; font-weight : normal; font-size: .75em; color : #666666;}
a.prioritysmall:active  { text-decoration: underline; font-weight : normal; font-size: .75em; color : #666666;}
a.prioritysmall:hover   { text-decoration: underline; font-weight : normal; font-size: .75em; color : #9B5455;} /* qqq */


/* ---- EVERYTHING BELOW IS FOR CSS DROPDOWN MENU CONTROL ---- */

#nav, #nav ul {
  margin:0;
  padding:0;
  font:bold 15px verdana;
  list-style:none;
  width:103px;                  /* Width of Menu Items worked well at around 103 */
  /* border-bottom:1px solid #cccccc; */
}

#nav li {
  position:relative;
}
  
#nav li ul {
  position:absolute;       /* position:relative is strange - everything moves down on a mouseover  */
  font:bold 10px verdana;
  width:96px;            /* Width of sub Menu Items worked well at around 96 */
  left:7px;               /* was:  left:199px; Set 1px less than menu width, best is left:7px; */
                          /* was:  top:0; */
  display:none;
}

/* Styles for Menu Items */
#nav li a {
  display:block;
  text-decoration:underline;
  color:#6567DC;                /*qqq  text=dark-blue 0000ff */ 
  background:#f0f0f0;           /* IE6 Bug  must match page, table or cell background color */
  padding:5px;
  /* border:1px solid #cccccc;  */
  /* border-bottom:1px solid #cccccc;     OR USE    border-bottom:0px;   */
}

/* Fix IE. Hide from IE Mac \*/
* html #nav li { float:left; height:1%; }
* html #nav li a { height:1%; }
/* End */

#nav li a:hover { color:#9B5455; background:#f9f9f9; } /* Hover Styles text=dark-blue, background=light-white*/
/* #nav li a:hover { color:#E2144A; background:#f9f9f9; } */
    
#nav li ul li a { padding:2px 5px; } /* Sub Menu Styles */
    
/*       #nav li:hover ul, #nav li.over ul { display:block; } */

#nav li:hover ul, #nav li.over ul { display:block; background:white; } /* The magic */









