/*                                                                          */
/* NOTICE:                                                                  */
/*    To support more than one-single FlexMenu server control per page      */
/*    the CSS files' name is used as a class and is prefixed to all of      */
/*    the selectors (without the path or extension).                        */
/*                                                                          */
/*    The server control will automatically wrap the entire FlexMenu        */
/*    within a div-tag, whose class-name will be derived from the filename. */
/*                                                                          */
/*    *** THESE MUST BE ENTIRELY IN LOWER CASE! ***                         */
/*    The server control will cast these filenames to lower before use!     */
/*                                                                          */
/*    Only the base ASCII character set is supported.                       */
/*                                                                          */
/*    Also, spaces and periods before the extension will be converted       */
/*    into underscores, as these are not permitted within the selector.     */
/*                                                                          */

/* Button menu items, controls visibility of associated sub-menus */
.basicnav a
{
	/* A; holds the title of the associated submenu, and typically acts as a */
	/* button (or folder) for the submenu. Can also hold images (background, etc). */
    display: block;
    font-weight: bold;
    font-size: 1.1em;
    color: #492300;
    border: solid 1px transparent;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
    margin-bottom:1em;
}

/* Link menu items */
.basicnav a.ekflexmenu_link, .basicnav a.ekflexmenu_button, 
.basicnav a.ekflexmenu_link:link, .basicnav a.ekflexmenu_button,  
.basicnav a.ekflexmenu_link:visited, .basicnav a.ekflexmenu_button {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: #014930;
    text-decoration: none;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */

}

.basicnav ul { list-style: none; margin-left:0;}

