/* CSS Document */
/*-----------------------------------------------------------
  Pure CSS Drop-down Menu
  http://www.spegele.com/post.php?post_id=79
  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:1000;
        /*font-size:12px;*/
		font-size: .80em;
        /*font-family:Verdana, Arial, Helvetica, sans-serif;*/
		font-family: Arial, Verdana, Helvetica, sans-serif;
		/*border:1px solid #E9FBDB;
		border-width:1px 1px 1px 1px; */
        /*font-weight:bold;*/
        text-align:center;
    }
    .cssnav ul {
        padding:0;
        margin:0;
        list-style-type:none;
    }
    .cssnav ul ul {
        width:149px;
        text-align:left;
}
/*	Main list 
    -----------------------------------*/
    .cssnav li {
        float:left;
        /*width:90px;*/
		/*width: auto;*/
        position:relative;
    }
/*	First Level
    -----------------------------------*/
    /* Links */
    .cssnav a, .cssnav a:visited {
        display:block;
        text-decoration:none; 
        color:#E9FBDB; 
       	border:1px solid #E9FBDB;
        /*border-width:1px 0px 1px 1px;*/
		border-width:1px 1px 1px 1px;
        /*background:#467aa7;*/
        line-height:25px;
		padding: 0px 11px 0px 11px;
    }
    /* Links on hover */
    .cssnav a:hover, .cssnav ul ul a:hover{
        color:#1A1810;
        background:#E9FBDB;
    }
    .cssnav :hover > a, .cssnav ul ul :hover > a {
        color:#1A1810;
        background:#E9FBDB;
    }
/*	Second Level
    -----------------------------------*/
    /* Links */
    .cssnav ul ul a, .cssnav ul ul a:visited {
		color:#1A1810;
        background:#E9FBDB;
        line-height:1em; 
        padding:5px 10px; 
        width:185px;
        border-width:0 1px 1px 1px;
    }
    /* Links on hover */
    .cssnav ul ul a:hover {
		color:#E9FBDB;
        background:#1A1810;
    }
    /* Visibility */
    .cssnav ul li:hover ul, .cssnav ul a:hover ul{
        visibility:visible; 
    }
/*	Third Level
    -----------------------------------*/
    /* Links */
    .cssnav ul ul ul a, .cssnav ul ul ul a:visited {
        background:#578bb8;
    }
    /* 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:26px;
        left:0; 
        border-top:1px solid #fff;
    }
/*	IE Table 
    -----------------------------------*/
    .cssnav table {
        position:absolute;
        top:0;
        left:0;
        border-collapse:collapse;
    }

