/* -----------------------------------------------------------------------------

    modest.menus v1.0 (default stylesheet)
    last updated on Feb. 03, 2007
    Copyright (C) 2007  Dave Rankin dave@field15.com

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.

----------------------------------------------------------------------------- */

.menuContainer {
/* style for the div that holds menu options */
    position: absolute;
    z-index: 99999;
    visibility: hidden;
    /* editing above properties may cause menus to misfunction */

    background: #dddddd;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #000000;
    width: 220px;
    margin-top: 3px;
}

.menuOptionContainer {
/* style for div that holds an individual menu option */
    border-top: 1px solid #a3bcce;
    background: #dddddd;
    color: #000000;
}

.menuOptionContainerHover {
/* style for mouseover of div that holds an individual menu option */
    border-top: 1px solid #a3bcce;
    background: #ffffff;
    color: #000000;
}

a.menuOption {
/* style for the text/link itself in a menu option */
    font-family: 'Trebuchet MS';
    font-weight: bold;
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
}

a.menuOption:visited {
/* visited style for the text/link itself in a menu option */
    font-family: 'Trebuchet MS';
    font-weight: bold;
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
}

a.menuOption:hover {
/* hover style for the text/link itself in a menu option */
    font-family: 'Trebuchet MS';
    font-weight: bold;
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
}

a.menuOption:visited:hover {
/* hover style for the text/link itself in a menu option */
    font-family: 'Trebuchet MS';
    font-weight: bold;
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
}
