
#listMenuRoot{
	margin-left:auto;
	margin-right:auto;
}
/* All <ul> tags in the menu including the first level */
.menulist {
 margin: 0;
 list-style: none;
 padding-left:9px;
 float:left;
 padding-right:9px;
}

.menulist ul {
 margin: 0;
 list-style: none;
 padding-left:10px;
 float:left;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
display: none;
position: absolute;
white-space:nowrap;
background-color: #5b5b5b;
margin-top:0px;
list-style: none;
padding-left:0px;
text-align:left;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul li ul {
display: none;
list-style: none;
}


/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 list-style: none;
}

.menulist li ul li{
 border-bottom:1px solid #747474;
 width:180px;
 list-style: none;
 display:block;
 padding: 4px 4px 4px 4px;
 text-align:left;
}

.menulist li ul{
 border-bottom:1px solid #747474;
 list-style: none;
 display:none;
 padding: 0px;
 text-align:left;
 
}

.menulist li ul li a{
 font-size: 12px;
 font-family:Arial;
 color:white;
 font-weight:600;
 text-decoration:none;
}

.menulist li ul li a:hover{
 font-size: 12px;
 font-family:Arial;
 color:black;
 font-weight:600;
}

/* 2nd tier sub nav*/
#topNav{
 font-size: 12px;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	font-family:Arial, Helvetica, sans-serif;

}

#topNav:hover {
 font-size: 12px;
	color: #b5b5b5;
	font-weight: bold;
	text-decoration: none;
	display:block;
	font-family:Arial, Helvetica, sans-serif;
	/*background-color:#d548a0;
	background-image:url(../images/nav-bg-02.jpg);
	background-repeat:repeat-x;*/

}



/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */


/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/

/*for hover color */



/*
 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(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. 
.menulist a .subind {
 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 li {
 float: left;
}

* html .menulist li {
 float: left;
 height: 1%;
}


/* End Hacks */