/* This CSS will set up a floating navigation box */
/* across the top of a page */
div.banner {
  margin: 0;
  background-color: #CCCCAA;
  font-size: 12pt;
  font-weight: normal;
  line-height: 1.1;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  right: 0px;
}

body>div.banner {position:fixed;}

div.banner p {
  margin: 0; 
  padding: 5px;
  font-family: Arial, sans-serif;
  background: #FFFFCC;
  border: thin outset #FFFFCC; /* this give it the floating look */
  color: white;
}

div.banner a {font-size: 10pt;
              display: inline;
              padding: 0em 3em 0em 3em;}
div.banner a:link {text-decoration: none; 
                   color: black;}
div.banner a:visited {text-decoration: none; 
                      color: black;}
div.banner a:hover {background: #0000AA; 
                    color: yellow;}

