/* CSS Document */

/* ------------------------------ Navigation ------------------------------ */

/* Pure CSS Drop-down Menu
  Author: Justin Spegele, Spegele Design and Development
  http://www.spegele.com/
  Modified: 5/6/08 by ilovemountains.org
  This code is free to modify and use for any purpose, as
  long as proper credit is given to the original designer */

    #nav2 {
        position:relative; 
		width:100%;
        font-size:14px;
        font-family: Arial, Helvetica, sans-serif;
        text-align:center;
        z-index:1000;
		background-color:993300;

    }
    #nav2 ul {
        padding:0;
        margin:0;
        list-style-type:none;
    }
    #nav2 ul ul {
		width:161px;
/* original width, USE THIS ONE WITH REGULAR HEADER        width:194px; */
        text-align:left;
}
/*	Main list ------------------------*/
    #nav2 li {
        float:left;
        width:161px;
        position:relative;
    }
	
	
/*	First Level ------------------------*/
    /* Links */
    #nav2 a, #nav2 a:visited {
        display:block;
        text-decoration:none; 
        color:#fff; 
        background:#99CC66; 
        line-height:28px;
		text-decoration: none;
		font-weight:bold;
    }
	
	
    /* Links on hover */
    #nav2 a:hover, #nav2 ul ul a:hover{
        color:#fff; 
        background:#CC0000;
    }
    
    #nav2 :hover > a, #nav2 ul ul :hover > a {
        color:#fff;
        background:#CC0000;
    }
	
	
/*	Second Level ------------------------*/
    /* Links */
    #nav2 ul ul a, #nav2 ul ul a:visited {
        background:#99CC66;
        line-height:1em; 
        padding:10px 5px 10px 10px; 
        width:179px;
		font-weight:normal;
    }
    /* Links on hover */
    #nav2 ul ul a:hover {
        /*background:#CC0000;*/
		background:#B6DC90;
		color:#629231;
    }
    /* Visibility */
    #nav2 ul li:hover ul, #nav2 ul a:hover ul{
        visibility:visible; 
    }

/*	All Sub Levels ---------------------*/
    /* Default visibility */
    #nav2 ul ul {
        visibility:hidden;
        position:absolute;
        top:26px;
        left:0; 
        border-top:1px solid #fff;
    }
	
/*	IE Table --------------------------*/
    #nav2 table {
        position:absolute;
        top:0;
        left:0;
        border-collapse:collapse;
		}


/* ------------------------------ end navigation ------------------------------ */
