
/* 
 copyright 2004-2005 Rick Fillman, all rights reserved.
   Source code here MAY NOT be copied in whole or in part without permission.
   Source code here remains the property of the author,
   and may be deployed on a webserver ONLY with permission.
*/ 

/* Rick Fillman - External Style Sheet */
/*    menu buttons   */

  

#upperMenuBar {
	float: right;
	mXXax-width: 80%;
	margin: 0em .5em;
	background: gainsboro;
	}

#upperMenuBar li a {
	width: auto;
	padding: 0em .5em;
	}

#bottomCenter li a {
	width: auto;
	padding: 0em .5em;
}
  
/* ----- the new menu ----*/
ul.navlist
{
	padding: 0;
	margin: 0;
	list-style-type: none;
/* float ok in firefox.  Constrains anyway.  But ie bleeds over into next column, next cell. Cannot use */
/* fXloat: left; */
	color: #fff;
/* background-color: magenta; */
}

ul.navlist li { 
	display: inline;
 }

ul.navlist li a
{
	float: left;
	width: 8em;
	color: black; 
	background-color: lightsteelblue;
	padding: 0.1em 1em;
	text-decoration: none;

	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-opera-border-radius: 4px;

	border-style: outset;
	border-color: gray;
	border-width: 1px;
}

ul.navlist li a.selected
{
	
	border-style: inset;
	border-color: gray;
	border-width: 1px;

	color: black;
}


ul.navlist li a:hover
{
	text-decoration: underline;
	color: #fff;
}

img.navButton { 
	margin: 0cm; 
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-opera-border-radius: 4px;
	border: 1px solid #000;
	border-width: 1.5px 1.5px 1.5px 1.5px;
}

/* end menu */


  