@charset "utf-8";
/* CSS for navi */

table  {
    border-collapse: collapse;
}
table.center  {
    margin-left: auto;
	margin-right: auto;
}
nav td  {
    background-color: blue;
	width: 100px; 
	height: 40px;
	font-size: 24px;
	color: pink;
	text-align: center;
	border: 5px solid pink;
	border-radius: 15px;
}
nav tr  {
    margin: 30px auto;
}
tr a  {
   color: white;
   text-decoration: none;
}
ul.navl  {
    margin-left: 30px;
}
li.navl  {
    width: 100px;
	height: 40px;
	background-color: #2B93C7;
	list-style-type:none;
	font-size: 24px;
	color: white; 
	border-radius: 15px;
	text-align: center;
	border: 5px solid pink;
	line-height: 40px;
}
li a  {
  color: white;
  text-decoration: none;
}
li a:hover   {
        color: pink;
}