
/*****************************************************************
NAVIGATION LIST DECLARATIONS
*****************************************************************/

ul#nav					{
						  list-style-type: none;
						  margin: 0px 0px 0px 0px; padding: 0px;
						  font-family: georgia, times new roman, serif;
						}

/* Applying float: left to the li is a hack to eliminate the spacing between li's in IE */
/* NAVIGATION LEVEL 1 */

ul#nav li				{
						  display: inline;
						  padding: 0px; margin: 0px;
						  background: transparent;
						}

ul#nav li span			{ display: none; }

ul#nav A				{
						  font-size: 110%;
						  font-weight: normal;
						  color: #590000;
						  text-decoration: none;
						  margin: 0px 0px 0px 0px;
						  padding: 4px 10px 4px 5px;
						}

ul#nav A:link		{ color: #590000; }
ul#nav A:visited	{ color: #590000; }
ul#nav A:active		{ color: #590000; }
ul#nav A:hover		{ color: #590000; text-decoration: underline; }
ul#nav A#act_l1		{ color: #590000; text-decoration: underline; }

ul#nav li#home A		{ position: absolute; top: -36px; left: 4px; display: block; width: 183px; height: 27px; background: #fff url(images/logo.gif) no-repeat; margin: 0px; padding: 0px; }

ul#nav li#about A		{
						  font-family: verdana, arial, helvetica, sans-serif;
						  font-weight: normal;
						  color: #999;
						  font-size: 110%;
						  position: absolute; top: -32px; left: 500px;
						  display: block; width: 130px; height: 20px;
						  margin: 0px; padding: 0px;
						}

ul#nav li#about A:hover	{ text-decoration: underline; }

ul#nav li#contact A		{
						  font-family: verdana, arial, helvetica, sans-serif;
						  font-weight: normal;
						  color: #999;
						  font-size: 110%;
						  position: absolute; top: -32px; left: 815px;
						  display: block; width: 60px; height: 20px;
						  margin: 0px; padding: 0px;
						}

ul#nav li#contact A:hover	{ text-decoration: underline; }

ul#nav li#contribute A		{
							  font-family: verdana, arial, helvetica, sans-serif;
							  font-weight: normal;
							  color: #999;
							  font-size: 110%;
							  position: absolute; top: -32px; left: 635px;
							  display: block; width: 170px; height: 20px;
							  margin: 0px; padding: 0px;
							}

ul#nav li#contribute A:hover	{ text-decoration: underline; }


