@charset "utf-8";
/* CSS Document */
<style type="text/css">

ul.menu { 
    list-style:none; /* remove bullets */ 
    background:#fc0;
	margin-top: 0;
    padding:0; margin:0; /* reset browser defaults */ 
	padding-left: 0px;
    } 
ul.menu li {
	display:inline; /* line-up the list items horizontally */
    color:#000; 
	padding:0;
	margin:0; /* again, reset browser defaults */
    } 
ul.menu li a { 
    background:#fc0; 
    color:#000; 
    text-decoration:none; 
	padding: 5px 8px; /*padding inside each tab*/
	border-right: 1px solid black; /*right divider between tabs*/
    display: block; /* block it baby! */ 
    float:left; /* float each list item to the left */ 
	visibility:		inherit; /* fixes IE7 'sticky bug' */
    } 
ul.menu li a:hover { 
    background:#ff0;
    color:#000;
	text-decoration:underline;
	visibility:		inherit; /* fixes IE7 'sticky bug' */
    } 
table.menu {
	border: 1px solid black;
	display:inline; /* line-up the list items horizontally */
	padding:0;
	margin:0; /* again, reset browser defaults */
	}
