/* CSS Document */

#navmenu {
position:relative;
margin: 0 0 0 12.5px;
padding-bottom: 5px;
font-size:16px; }

#navmenu ul li { float: left;} /* lists aligned to the left */

#navmenu a, span {
     width: auto; /* definition of menu button size */
     float: left;
     display: block;
	 padding: 2px 10px;
     text-align: center;
     border: 3px double #000;
     text-decoration: none;
     color: #fff;
     background: #999;
	 font-weight:bold;
	 font-family:"Times New Roman", Times, serif;
     }
	 
#navmenu a:hover {
	color:#444;
	background: #fff;   }

#navmenu a:active, .chosen {
     background-color:#666;
     border-color:#fff; 
     color: #fff;
     }