.stmenu0 ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	height: auto;
	font-size: 13px;
	text-align: center;
}

/*Top level list items*/
.stmenu0 ul li{
	display: inline;
	float: left;
	margin: 0px;
	z-index:5;

}

/* Top level menu link items style*/
.stmenu0 ul li a {
    display: block;
    /*width: 55px; Width of top level menu link items*/
    padding: 12px;
    border-left-width: 0;
    text-decoration: none;
    color: white;
    background-image: none;
    font-size: 14.6px;
}

    .stmenu0 ul li a:hover {
        display: block;
        /*width: 55px; Width of top level menu link items*/
        height: auto;
        text-decoration: none;
        color: lightblue;
    }

/*1st sub level menu*/
.stmenu0 ul li ul {
    position: absolute;
    top: 1em; /* no need to change, as true value set by script */
    display: block;
    visibility: hidden;
    list-style-type: none;
    background-color: white;
    width: 965px;
    margin-top: 160px;
    z-index: 999;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
    border-bottom: 5px solid #0070c0;
    border-left: 1px solid #0070c0;
    border-right: 1px solid #0070c0;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.stmenu0 ul li ul li{
	display: list-item;
	float: left;
	list-style-type: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.stmenu0 ul li ul li ul {
    left: 159px; /* no need to change, as true value set by script */
    top: 0;
}

/* Sub level menu links style */
.stmenu0 ul li ul li a{
	display: block;
	width: 200px;  /*width of sub menu levels*/
	color: black;
	text-decoration: none;
	text-align: left;
	font-size: 15px;
}

.stmenu0 ul li a:hover
{
    /* main menu item - hover state */
}

.stmenu0 ul li ul li a:hover {
    /* sub menu item - hover state */
    color: #0070c0;
}

/*Background image for top level menu list links */
.stmenu0 .mainfoldericon{

}

/*Background image for subsequent level menu list links */
.stmenu0 .subfoldericon{
	background-image: url(../images/sub-menu-off.gif);
}

/*Background image for subsequent level menu list links */
.stmenu0 a.subfoldericon:hover{
	background-image: url(../images/sub-menu-on.gif);
}


* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top: 1em;
}

/* Holly Hack for IE \*/
* html .stmenu0 ul li { float: left; height: 1%; }
* html .stmenu0 ul li a { height: 1%; }
/* End */