
/* All <ul> tags in the menu including the first level */
.menulist1, .menulist1  ul {
 margin: 0px;
 padding: 0px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist1 ul {
 visibility: hidden;
 position: absolute;
 top: 2.0em; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0px;
 width: 160px;  
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist1 ul ul {
 top: 0px;
 left: 158px;
}

/*
 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.
*/
.menulist1 li {
 float: left;
 position: relative;
 background: #FF;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist1 ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
 background: #BBD97F;
 border: 0px;
 }
 
 
.menulist1 ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist1 a {
	display: block;
	padding: 3px;
	color: #44403A;
	text-decoration:none;
	font-size:12px;
	font-family:Arial;
	font-weight:normal;
}

.menulist1 ul li a {
	display: block;
	padding: 3px;
	color: #44403A;
	text-decoration:none;
	font-size:12px;
	font-family:Arial;
	font-weight:normal;

}

.menulist1 a:visited
{
	display: block;
	padding: 3px;
	color: #44403A;
	text-decoration:none;
	font-size:12px;
	font-family:Arial;
	font-weight:normal;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist1 a:hover, .menulist1 a.highlighted:hover, .menulist1 a:focus {
	color: #E87824;
	font-size:12px;
	font-family:Arial;
	text-decoration:none;
	font-weight:normal;
}

.menuSublist1 a {
 display: block;
 padding: 5px;
 color: #EA7F2D;
 text-decoration:none;
 font-weight:normal;
 text-align:left;
}

.menuSublist1 ul li a {
 display: block;
 padding: 3px;
 color: #44403A;
 text-decoration:none;
 font-size:11px;
 text-align:left;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menuSublist1 a:hover, .menuSublist1 a.highlighted:hover, .menuSublist1 a:focus {
 color: #fff;
 background:#9DB66C;

}
.menulist1  a.highlighted {
 color: #E87824;

 /*background-color: #FFFFFF;*/
}

/*
 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:
    .menulist1 a#xyz {
      background-image: url(out.gif);
    }
    .menulist1 a#xyz:hover, .menulist1 a.highlighted#xyz, .menulist1 a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist1 a .subind {
 display:  none;
}
.menulist1 ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist1 a {
 float: left;
}
.menulist1 ul a {
 float: none;
}
/* \*/
.menulist1 a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist1  ul li {
 float: left;
 height: 1%;
}
* html .menulist1  ul a {
 height: 1%;
}

/*Style for small top menu*/
.smallmenulist1 a 
{
 padding: 5px;
 color: #44403A;
 text-decoration:none;
 font-weight:normal;
 font-size:10px;
 font-family:Arial;
 text-align:left;
}

.smallmenulist1
{
 padding: 5px;
 color: #44403A;
 text-decoration:none;
 font-weight:normal;
 font-size:10px;
 font-family:Arial;
}

.smallmenulist1 a:hover, .smallmenulist1 a.highlighted:hover, .smallmenulist1 a:focus {
 color: #E87824;
 font-size:10px;
 font-family:Arial;
}
.smallmenulist1 a:visited
{
 padding: 5px;
 text-decoration:none;
 font-weight:normal;
 font-size:10px;
 font-family:Arial;
 text-align:left;
}
/* End Hack */