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

    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 */
    background: #ffffff;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: #e0e0e0;
    width: 142px;
    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 solid #e0e0e0;
    background: #e0e0e0;
    color: #333366;
    width: 142px;
    text-align: center;
}

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

a.menuOption {
/* style for the text/link itself in a menu option */
    font-family: "proxima-nova-1","proxima-nova-2",sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #333333;
	font-size: 15px;
	line-height: 36px;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
}

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 */
    border-bottom: 1px dashed #727179;
}

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

}
