/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist2, .menulist2  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist2 ul {
 display: none;
 position: absolute;
 top: -15px; /* THIS IS WHAT YOU CHANGE TO POSITION WHERE THE DROP DOWNS DROP DOWN FROM - GT */
 margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
 left: -5px;
 width: 160px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist2 ul ul {
 top: 0px; 
 margin-top: 0;
 left: 150px;
}

/*
 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.
*/
.menulist2 li {
 float: left;
 display: block;
 position: relative;
 margin-right: -1px;
 text-align: left;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
	z-index: 10000;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist2 ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.menulist2 ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist2 a {
 display: block;
 padding: 0;
 text-decoration: none;
	color: #4E5C47;
}
.menulist2 li li a {
 border: 1px solid #0D3D7C;
 color: #0D3D7C;
 background-color: #FFFFFF;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 10px;
 text-transform: capitalize;
 padding: 5px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist2 a:hover, .menulist2 a.highlighted:hover, .menulist2 a:focus {
	color: #4E5C47;
	text-decoration: none;
}
.menulist2 a.highlighted {
	color: #0D3D7C;
	text-decoration: underline;
}
/* second layer */
.menulist2 li li a:hover, .menulist2 li li a.highlighted:hover, li li .menulist2 a:focus {
 color: #FFFFFF;
 background-color: #0D3D7C;
}
.menulist2 li li a.highlighted {
 color: #f2a3a5;
 background-color: #663300;
}

/*
 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:
    .menulist2 a#xyz {
      background-image: url(out.gif);
    }
    .menulist2 a#xyz:hover, .menulist2 a.highlighted#xyz, .menulist2 a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist2 a .subind {
 display: none;
}
.menulist2 ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist2 a {
 float: left;
}
.menulist2 ul a {
 float: none;
}
/* \*/
.menulist2 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 .menulist2 ul li {
 float: left;
 width: 100%;
}

* html .menulist2 ul li {
 float: left;
 height: 1%;
}
* html .menulist2 ul a {
 height: 1%;
}
/* End Hacks */