/* 
Document   : m2
Created on : 12/05/2008, 19:52:15
Author     : pblakes
Description:
Purpose of the stylesheet follows.

nthburl green black;

*/

/* 
customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
.menu2 {
    background-color: black;
    border-color: black;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    width: 100%;
    border-left: none; border-top: none; border-bottom: 1px solid silver; border-right: none;
}

.menu2 ul {

    margin: 0;
    padding: 0;
    list-style-type: none;
    z-index: 199;

}

/*Top level list items*/
.menu2 ul li {

    color: silver;
    background-color: black; /*overall menu background color*/
    position: relative;
    display: inline;
    float: left;
    text-transform: uppercase;
    
}


/*Top level menu link items style*/
.menu2 ul li a {

    color: silver;
    background-color: black;
    border-color: black;
    display: block;
    width: 140px; /*Width of top level menu link items*/
    padding: 5px;
    border-width: 1px;
    text-decoration: none;
    border-style: solid;
    white-space: nowrap;

}

.menu2 ul li a:hover {

    color: yellow;
    border-color: yellow;
    background-color: black;

}

/*1st sub level menu*/
.menu2 ul li ul {

    left: 0;
    position: absolute;
    top: 1em; /* no need to change, as true value set by script */
    display: block;
    visibility: hidden;
    z-index: 199;

}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu2 ul li ul li {

    display: list-item;
    float: none;
    text-align: left;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.menu2 ul li ul li ul {

    left: 159px; /* no need to change, as true value set by script */
    top: 0;
    z-index: 199;

}

/* Sub level menu links style */

.menu2 ul li ul li a {

    color: silver;
    background-color: black;
    border-color: black;/*1px solid black;*/
    display: block;
    width: 200px; /*width of sub menu levels*/
    text-decoration: none;
    padding: 5px;
    border-style: solid;
    border-width: 1px;

}

.menu2 ul li ul li a:hover {

    color: yellow;
    border-color: yellow;
    background-color: black;

}


/*Background image for top level menu list links */
.menu2 .mainfoldericon {
    background: black url(media/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.menu2 .subfoldericon {
    background: black url(media/arrow-right.gif) no-repeat center right;
}

* 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 .menu2 ul li { float: left; height: 1%; }
* html .menu2 ul li a { height: 1%; }
/* End */








