/*
 * Author: CT Ware <ctware@us.ibm.com>
 * Created: 10/16/2007
 * Version: subnav.css, v1.0 2007/10/16
 */


/* basic setup for subnavbar */
#subnavbar
{
   position: absolute;
   /* margin-left: 180px; changed to add photo gallery */
   margin-left: 130px;
   margin-top: -7px;
   padding: 0px;
   background: #EEEEEE; /* gray */
   height: 25px;
   z-index: 2;
}

/* basic setup for navigation list */
#subnavlist
{
   margin: 0px;
   padding-left: 35px;
}
#subnavlist li
{
   list-style: none;
   float: left;
}

/* setup behavior of subnavlist/subnavbar */
#subnavbar a, #subnavlist li.extend
{
   margin: 0px;
   display: block;
   padding: 1px 25px;  /* this must match the hover values */
   text-decoration: none;
   background: #EEEEEE; /* gray */
   font: bold 12px verdana, serif;
   color: black; 
   position:relative; /* needed for the tooltips */
}

/* change color when hovering over a menu item or if 
 * currently on the given page */
#subnavbar a:hover, #subnavbar a#current
{
   padding: 1px 25px;
   background: #94B5DE;  /* lt blue */
   border-style: solid;
   border-width: 1px;
   border-color: #333;
   color: white;
}

#subnavbar a#current
{
   border-style: none;
}

/* Tooltips for subnavbar */
#subnavbar a:hover span{ 
    display:block;
    position:absolute;
    top:2em; left:2em; 
    width:15em; 
    border:1px solid #000;
    background-color:#FFF; 
    color:#000;
    text-align: center;
    font: normal 12px arial;
}



/* EOF */
