/* menubar container sets z-index, gets positioned by a JS */
div.bar {
	width:1040px;
	height:25px;
	position:absolute;	/* top styled in div */
	left:2px;
	background-color:#eeeeee;
	z-index:4;
	}

div.userbar {
	width:1037px;
	height:25px;
	margin:25px 0px 0px 0px;	/* slides under div.bar and lowers div.cntnt */
	padding-left:3px;
	background-color:#eeeeee;
	}

/* there is one of these for each menubar item and it's the only class of <ul>*/
ul.m {
	width:100px;
	height:25px;
	position:absolute;
	top:0;
	margin:0px;
	padding:0px;
	list-style:none;
	}

/* the menu bar list item.  Every li.bar must have an a.bar-m or an a.bar */
li.bar{
	width:100px;
	height:25px;
	display:block;
	}

/* this <a> carries btn_bar.jpg and has an href and a :hover */
/*spec background:url in site CSS */
a.blnk {
	width:100px;
	height:25px;
	margin:0px;
	padding:0px;
	display:block; /* req in Mozilla to fill <a> with background */
	background-repeat: no-repeat;
	color:black;
	text-indent:5px;
	text-decoration:none;
	}

/* not necessary to spec link pointer in a.menu */
/*spec background:url in site CSS */
a.blnk:hover {color:white;}

/* this <a> also carries btn_bar.jpg BUT has NO href, no :hover, and no pointer */
/*spec background:url in site CSS */
a.bnolnk {
	width:100px;
	height:25px;
	margin:0px;
	padding:0px;
	display:block; /* req in Mozilla to fill <a> with background */
	background-repeat: no-repeat;
	color:black;
	text-indent:5px;
	text-decoration:none;
	cursor:default; /* prevents hand on href-less <a> */
	}

/* menu buttons.  Every li must carry an a.m ***************************************************************/
li.mshow{
	width:100px;
	height:25px;
	float:left;
	margin:0px;
	padding:0px;
	display:block;
	}

li.mhide{
	width:100px;
	height:25px;
	float:left;
	margin:0px;
	padding:0px;
	display:none;
	}

/* menu drop-down button */
/*spec background:url in site CSS */
a.m {
	width:100px;
	height:25px;
	margin:0px;
	padding:0px;
	display:block; /* req in Mozilla to fill <a> with background */
	background-repeat: no-repeat;
	color:black;
	text-indent:5px;
	text-decoration:none;
	}

/* not necessary to spec link pointer in a.m */
/*spec background:url in site CSS */
a.m:hover {color:white;}
