/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
	 float: left;
	 width: 800px;
	 display: inline;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	z-index: 100;
	top: 25px; 
	left: 0;
	border-bottom: 5px solid #b63a32;
	width: 180px;
}

/*
 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;
	display: inline;
	 position: relative;
	 text-align: center;
	margin-bottom: 0;
	width : auto;
	/*width needed or else Opera goes nuts */
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	 float: none;
	 margin: 0;
	 text-align: left;
}
.menulist ul>li:last-child {
	 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist li a {
	text-decoration: none;
	font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
	font-size: 13px;
	display: block;
	border-right: #c3c3c3 1px solid;
	height: 21px;
	padding: 4px 17px 0 17px;
	text-transform: uppercase;
}

/* for ie6 */
.menulist li a#coffee,
.menulist li a#tea,
.menulist li a#merch
 {
	text-decoration: none;
}

.menulist li ul.submenu {
	padding: 0;
	margin: 0;
}

.menulist li ul.submenu li a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: auto;
	color: #000;
	background: #fbfbfb;
	width: 170px;
	padding: 3px 5px;
 	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	border: none;
	text-decoration: none;
}

/* List  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background: url(../_media/topnav_bg_ro.gif) repeat-x;
 text-decoration: none;
}
.menulist .submenu a:hover, .menulist .submenu a.highlighted:hover, .menulist .submenu a:focus {
 color: #000;
 background-color: #f7eed1;
 text-decoration: underline;
}
.menulist a.highlighted {
 color: #FFF;
 background: url(../_media/topnav_bg_ro.gif) repeat-x;
 text-decoration: none;
}

/* 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;
}
/* */

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */