﻿body  {}


/*  BEGIN CSS FROM http://www.handy-html.com/simple-css-dropdown-menu-updated/    */

/*---- CROSS BROWSER DROPDOWN MENU ----*/
/* I think the line below forces the menu to have a left border that makes it hard for me to center it
    I will comment it out and see*/

ul#nav {margin: 0 0 0 0px; }

ul.drop a { display:block; color: #fff; font-family: Verdana; font-size: 14px; text-decoration: none;}
ul.drop, ul.drop li, ul.drop ul { list-style: none; margin: 0; padding: 0; border: 1px solid #fff; 
                                    background: #555; color: #fff;}
ul.drop { position: relative; z-index: 597; float: left; }
ul.drop li { float: left; line-height: 1.3em; vertical-align: middle;  padding: 5px 10px; }
ul.drop li.hover, ul.drop li:hover { position: relative; z-index: 599; cursor: default; background: #C0C0C0  }

ul.drop ul { visibility: hidden; position: absolute; top: 100%; left: 0; z-index: 598; width: 195px; 
        background: #555; border: 1px solid #fff; }
ul.drop ul li { float: none; }
ul.drop ul ul { top: -2px; left: 100%; }
ul.drop li:hover > ul { visibility: visible }

