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

    modest.menus v1.0 (default stylesheet)
    last updated on Sep. 06, 2007 (09-06-2007)
    Copyright (C) 2007  Dave Rankin dave.caretcake@gmail.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.

    For an explanation of this file and how to use ModestMenus,
    please see the documentation that is supplied in the archive
    with this file or vist http://dave.caretcake.com.

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


.menuContainer {
/* style for the div that holds menu options */
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #3b5b73;
    width: 205px;
    margin-top: 0px;

    /* WARNING: The following three properties are the only style elements that
      you problably shouldn't edit unless you have a specific reason and you
      know how this will affect the overall operation of the menu system.
      Changing the three values below may cause your menus to stop working.
    */
    position: absolute;
    z-index: 99999;
    visibility: hidden;
}

.menuOptionContainer {
/* style for div that holds an individual menu option */
    border-top: 1px dotted #3b5b73;
    background: #5b8db3;
    color: #ffffff;
    width: 205px;
    padding: 10px 0px 10px 0px;
}

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

a.menuOption {
/* style for the text/link itself in a menu option */
    font-family: "pt-sans-caption", Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    padding: 0px 15px 0px 15px;
    line-height: 16px;
    border: none;
}

a.menuOption:visited {
/* visited style for the text/link itself in a menu option */

}

a.menuOption:hover {
/* hover style for the text/link itself in a menu option */

}

a.menuOption:visited:hover {
/* hover style for the text/link itself in a menu option */

}
