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

/* 
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
.menu2 {
   font-family: "Trebuchet MS","Lucida Grande",Arial,Helvetica,sans-serif;
   font-size: 1.6em;
}
.menu2 ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Top level list items*/
.menu2 ul li{
    position: relative;
    display: inline;
    float: left;
}

/*Top level menu link items style*/
.menu2 ul li a{
    display: block;
    width: 110px; /*Width of top level menu link items*/
    padding: 1px 8px;
    border-left-width: 1px;
    text-decoration: none;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

/*1st sub level menu*/
.menu2 ul li ul{
    
    font-size: 0.8em;
    left: 0;
    position: absolute;
    top: 1em; /* no need to change, as true value set by script */
    display: block;
    visibility: hidden;
}

/*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;
}

/* Sub level menu links style */
.menu2 ul li ul li a{
    
    display: block;
    width: 200px; /*width of sub menu levels*/
    text-decoration: none;
    padding: 1px 5px;

    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
}

.menu2 ul li a:hover{
}

/*Background image for top level menu list links */
.menu2 .mainfoldericon{

}

/*Background image for subsequent level menu list links */
.menu2 .subfoldericon{

}

* 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 */


