/* HORIZONTAL FREESTYLE MENU LAYOUT */
.menulistFont {
	font-family: Verdana, Arial, sans-serif;
	font-size: 10px;
	color: #666666;
}
/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}
/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul { /* changes made for layout of dropdown root node */
 position: absolute;
 top: 22px; 
 margin-top: 0px; /* I'm using ems and px to allow people to zoom their font */
 left: 6px;
 width: 160px;
}
.menulist li {
 float: left;
 display: block;
 position: relative;

 margin-right: 0px;
 border: 0px;
 width: 100%;
}
/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: 0px;
 border: 0px;
 color: #666666;
 text-align:left;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}
/* Links inside the menu*/
.menulist a, .menulist li a {
 display: block;
 padding: 2px;
 margin: 0px;
 text-decoration: none;
 border: 0px;
}
/* List  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a.highlighted {
 border: 0px;
}
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 border: 0px;
 text-decoration: none;
}
.menulist li a:hover{
 border: 0px;
 text-decoration: none;
}
.menulist a.highlighted:hover {
}
.menulist a.nohighlight:hover, .menulist a.nohighlight:focus {
 text-decoration: none;
}
.storeselectservicemenu {
 border: 1px;
}
.validate
{
	color: red;
}
/*
 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 */
