/* styles.css */
/* Author:  Peluso */

h1		{font-family: arial, verdana, futura; color:blue}
body	{font-family: tahoma, helvetica, sans-serif; color:darkblue; background-color:#FFFFAA}
/*table	{width: 400 px; }*/
table, td, th
		{border: 1px solid blue; padding: 4px;}
th		{text-align: center;background-color: yellow;}
a:link {color:red;}      /* unvisited link */
a:visited {color:green;}  /* visited link */
a:hover {color:orange;}  /* mouse over link */
a:active {color:blue;}  /* selected link */ 
nav ul	{display: none;
		 list-style: none;
		 margin: 0;
		 padding:0}
nav:hover ul {display: block}
nav ul li	{border-top: 2px solid royalblue;
		 background-color: white;
		 width: 10em;
		 color: black }
nav ul li:hover	{background-color: powderblue}
