/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 	margin: 0;
 	padding: 0px;
 	list-style: none;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	font-weight: bold;
	text-decoration: none;
	line-height: normal;
	text-transform: uppercase;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 3.2em; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0px;
 width: 170px;
 font-weight: bold;
 font-variant: normal;
 text-transform: none;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 155px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 position: relative;
 height: 38px
 background: #EC8A0D;
/* border: 1px solid #ffffff; */
 border-left: 1px solid #ffffff; 
 margin-right: -1px; 
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0px;
 margin-bottom: -1px;
 color: black;
 background-color: #A19A88;
 padding: 3px;
}

.menulist ul>li:last-child {
 margin-bottom: 1px;
}
.menulist li:first-child {
 border-left: 0px; 
}
.menulist ul li {
 border-left: 0px; 
}



/* Links inside the menu */
.menulist a, .menulist a:visited {
 display: block;
 color: #ffffff;
 padding-left: 9px;   /* This gets the items properly spaced across the page for the top level*/
 padding-right: 9px;   
 text-decoration:  none;
 font-size: 8pt;
 font-weight: bold;
}

/* List  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted, .menulist a:focus {
 color: #990033;
/* background-color: #A19A88; */  /* was EC8A0D */
 text-decoration:  none;
 font-size: 8pt;
 font-weight: bold;
}


.menulist ul li a, .menulist ul li a:visited {
 font-size: 9pt;
 font-weight: normal;
}
.menulist ul li a:hover, .menulist ul li a.highlighted, .menulist ul li a:focus {
 color: #990033;
/* background-color: #A19A88; */  /* was EC8A0D */
 text-decoration:  none;
 font-size: 9pt;
 font-weight: normal;
}



/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(about.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/
    .menulist a#aboutusx {
      background-image: url(/images/about.gif);
    }
    .menulist a#aboutusx:hover, .menulist a.highlighted#aboutusx, .menulist a:focus#aboutusx {
     background-image: url(/images/about_roll.gif);
    }
    .menulist a#peoplesfair {
      background-image: url(/images/peoplesfair.gif);
    }
    .menulist a#peoplesfair:hover, .menulist a.highlighted#peoplesfair, .menulist a:focus#peoplesfair {
     background-image: url(/images/peoplesfair_roll.gif);
    }
    .menulist a#programs {
      background-image: url(/images/programs.gif);
    }
    .menulist a#programs:hover, .menulist a.highlighted#programs, .menulist a:focus#programs{
     background-image: url(/images/programs_roll.gif);
    }
    .menulist a#actioncommittees {
      background-image: url(/images/actioncommittees.gif);
    }
    .menulist a#actioncommittees:hover, .menulist a.highlighted#actioncommittees, .menulist a:focus#actioncommittees{
     background-image: url(/images/actioncommittees_roll.gif);
    }
    .menulist a#membership {
      background-image: url(/images/membership.gif);
    }
    .menulist a#membership:hover, .menulist a.highlighted#membership, .menulist a:focus#membership{
     background-image: url(/images/membership_roll.gif);
    }
    .menulist a#resources {
      background-image: url(/images/resources.gif);
    }
    .menulist a#resources:hover, .menulist a.highlighted#resources, .menulist a:focus#resources{
     background-image: url(/images/resources_roll.gif);
    }
    .menulist a#tears {
      background-image: url(/images/tears.gif);
    }
    .menulist a#tears:hover, .menulist a.highlighted#tears, .menulist a:focus#tears{
     background-image: url(/images/tears_roll.gif);
    }
    .menulist a#home {
      background-image: url(/images/home.gif);
    }
    .menulist a#home:hover, .menulist a.highlighted#home, .menulist a:focus#home{
     background-image: url(/images/home_roll.gif);
    }


/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */