
/*-----------------------------------------------------------
  Pure CSS Drop-down Menu
  Last Updated: 12/31/2007 by Justin Spegele
  Author: Justin Spegele
          Spegele Design and Development
          http://www.spegele.com/
  This code is free to modify and use for any purpose, as
  long as proper credit is given to the original designer.
----------------------------------------------------------- */

/* Overarching Menu
    -----------------------------------*/
    .cssnav { 
        position:relative;
        z-index:100;
        font:bold 11pt tahoma, "New Century Schoolbook", Verdana, Arial, Helvetica;
        text-align:center;
		margin:0;
		padding:0;
    }
    .cssnav ul {
        padding:0;
        margin:0;
        list-style-type:none;
        text-decoration:none;
    }
    .cssnav ul ul {
        width:250px;
        text-align:left;
}
/*	Main list 
    -----------------------------------*/
    .cssnav li {
        float:left;
        width:150px;
        position:relative;
    }

    .cssNOnav  {
        display:block;
        font:bold 11pt tahoma, "New Century Schoolbook", Verdana, Arial, Helvetica;
        text-decoration:none; 
        color:#000; 
        border:1px solid #000; 
        border-width:1px 1px 1px 1px;
		background:#000 url(/menu/lbg.gif);
        background:#aee0f7;
        line-height:28px;
    }

/*	First Level
    -----------------------------------*/
    /* Links */
    .cssnav a, .cssnav a:visited {
        display:block;
        text-decoration:none; 
        color:#fefefe; 
        color:#000; 
        border:1px solid #000; 
        border-width:1px 1px 1px 1px; 
		background:#fff url(/menu/lbg.gif);
        background:#aee0f7;
        line-height:28px;					/* ------ First Level Height ----- */
    }
    /* Links on hover */
    .cssnav a:hover, .cssnav ul ul a:hover{
        color:#fff; 
		background:#fff url(/menu/bg.gif);
        background:#80b0da;
    }
    .cssnav :hover > a, .cssnav ul ul :hover > a {
        color:#fff;
		background:#fff url(/menu/bg.gif);
        background:#80b0da;
    }
/*	Second Level
    -----------------------------------*/
    /* Links */
    .cssnav ul ul a, .cssnav ul ul a:visited {
		background:#fff url(/menu/lbg.gif);
        background:#aee0f7;
		line-height: 28px;					/* ------ Second Level Height ----- */
        padding:0px 10px; 
        width:260px;
        border-width:1px;
    }
    /* Links on hover */
    .cssnav ul ul a:hover {
		background:#fff url(/menu/bg.gif);
        background:#80b0da;
    }
    /* Visibility */
    .cssnav ul li:hover ul, .cssnav ul a:hover ul{
        visibility:visible; 
    }
/*	Third Level----------------------------------- There is no 3rd Level */
    /* Links */
    .cssnav ul ul ul a, .cssnav ul ul ul a:visited {
        background:#aee0f7;
    }
    /* Links on hover */
    .cssnav ul ul ul a:hover {
        background:#80b0da;
    }
    /* Positioning */
    .cssnav ul ul ul{
        left:150px; 
        top:-1px; 
    }
    .cssnav ul ul ul.left {
        left:-150px;
    }
    /* Visibility */
    .cssnav ul :hover ul ul{
        visibility:hidden;
    }
    .cssnav ul :hover ul :hover ul{
        visibility:visible;
    }
/*	All Sub Levels 
    -----------------------------------*/
    /* Default visibility */
    .cssnav ul ul {
        visibility:hidden;
        position:absolute;
        top:29px;			/* ----- <= Height o 1st Level + Border  ------ */
        left:0; 
        border-top:1px solid #fff;
    }
/*	IE Table 
    -----------------------------------*/
    .cssnav table {
        position:absolute;
        top:0;
        left:0;
        border-collapse:collapse;
    }
