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

nthburl green rgb(58,135,89);
rgb(165,0,34)


*/

/* 
customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
.menu2 {
    background-color: rgb(165,0,34);
    border-color: rgb(165,0,34);
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;/*bold;*/
    width: 100%;

}
.menu2 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    z-index: 199;
}

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

    color: white;
    background-color: rgb(165,0,34); /*overall menu background color*/
    position: relative;
    display: inline;
    float: left;

}


/*Top level menu link items style*/
.menu2 ul li a {
    color: white;
    background-color: rgb(165,0,34);
    border-color: rgb(165,0,34);
    display: block;
    width: 158px; /*Width of top level menu link items*/

/* 'padding-top', 'padding-right', 'padding-bottom', 'padding-left'  */
    padding: 5px 2px 5px 2px;
    border-width: 1px;
    text-decoration: none;
    border-style: solid;
    white-space: nowrap;
}

.menu2 ul li a:hover{
    color: rgb(165,0,34);
    background-color: white;
}

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

    font-size: 14px;
    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: white;
    background-color: rgb(165,0,34);
    border-color: rgb(165,0,34);

    display: block;
    width: 250px; /*width of sub menu levels*/
    text-decoration: none;
    padding: 5px;
    border-style: solid;
    border-width: 1px;

}

.menu2 ul li ul li a:hover{
    color: rgb(165,0,34);
    background-color: white;
}


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

/*Background image for subsequent level menu list links */
.menu2 .subfoldericon{
    background: rgb(165,0,34)  no-repeat center right; /*url(media/arrow-right.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 .menu2 ul li { float: left; height: 1%; }
* html .menu2 ul li a { height: 1%; }
/* End */








