/*                                                                          */
/* 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.     */
/*                                                                          */
.flymenu
{
    width: 140px;
    margin: 0;
    padding: 0;
}
.flymenu .ekflexmenu
{
    /* DIV; wraps the entire menu */ /* (the outer-most non-user container element) */
    color: rgb(0, 0, 255);
    font-size: 12px;
    font-family: Sans-Serif;
    padding: 0;
    margin: 0;
}
.flymenu .ekflexmenu_submenu, .flymenu .ekflexmenu_submenu_hover, .flymenu .ekflexmenu_submenu_parent, .flymenu .ekflexmenu_submenu_parent_hover
{
    /* DIV; holds submenu items, such as a submenu title and links. */
    top: 0px;
    left: 0px;
}
.flymenu ul
{
    /* UL; a container for menu list items (useful for non-graphical browsers). */
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.flymenu li
{
    /* LI; container for menu items (typically either links or sub-menus). */
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.flymenu .ekflexmenu_submenu_items
{
    /* DIV; container for menu lists. */
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
    margin: 0 0 0 5px;
    padding: 5px 0 0 0;
    text-decoration: none;
    text-transform: none;
    width: 100%;
}
.flymenu .ekflexmenu_submenu_items_hidden
{
    /* DIV; normally hidden container for menu lists (becomes visible if */
    /* user clicks on related submenu button, or if Javascript/CSS not supported). */
    display: none;
}
/* Button menu items, controls visibility of associated sub-menus */
.flymenu .ekflexmenu_button, .flymenu .ekflexmenu_button:link, .flymenu .ekflexmenu_button:visited
{
    /* 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). */
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    margin: 0;
    padding: 8px 0;
    text-indent: 0;
    text-transform: uppercase;
    width: 100%;
}
.flymenu .ekflexmenu_button:hover, .flymenu .ekflexmenu_button_hover, .flymenu .ekflexmenu_button_hover:link, .flymenu .ekflexmenu_button_hover:visited, .flymenu .ekflexmenu_button_hover:hover
{
    /* A; hovered version of .ekflexmenu_button, see above... */
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    margin: 0;
    padding: 8px 0;
    text-indent: 0;
    text-transform: uppercase;
    width: 100%;
    text-decoration: underline;
}
.flymenu .ekflexmenu_button_selected, .flymenu .ekflexmenu_button_selected:link, .flymenu .ekflexmenu_button_selected:visited
{
    /* A; selected version of .ekflexmenu_button, see above... */
    color: #ff6600;
    display: block;
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: uppercase;
    width: 100%;
}
.flymenu .ekflexmenu_button_selected_hover, .flymenu .ekflexmenu_button_selected_hover:link, .flymenu .ekflexmenu_button_selected_hover:visited, .flymenu .ekflexmenu_button_selected_hover:hover, .flymenu .ekflexmenu_button_selected:hover
{
    /* A; hovered version of .ekflexmenu_button_selected, see above... */
    color: #ff6600;
    display: block;
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: uppercase;
    width: 100%;
}
/* images */
.flymenu .ekflexmenu_submenu_items a img, .flymenu .ekflexmenu_submenu_items_hidden a img
{
    /* IMG; menu-item image, selected by CMS, can be used */
    /* with or in place of the textual title of the link. */
    border-width: 0px;
}

/* Link menu items */
.flymenu a.ekflexmenu_link, .flymenu a.ekflexmenu_link:link, .flymenu a.ekflexmenu_link:visited
{
    /* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 0;
    text-indent: 5px;
    color: rgb(50, 50, 50);
    text-decoration: none;
}
.flymenu a.ekflexmenu_link:hover, .flymenu a.ekflexmenu_link:active, .flymenu a.ekflexmenu_link:focus
{
    /* A; hovered version of ekflexmenu_link, see above... */
    padding: 0;
    text-indent: 10px;
    text-decoration: none;
}

.flymenu a.ekflexmenu_link_selected:link, .flymenu a.ekflexmenu_link_selected:visited
{
    /* A; selected version of ekflexmenu_link, see above... */
    color: #ff6600;
    display: block;
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 0;
    text-decoration: none;
    text-indent: 0;
    width: 100%;
}
.flymenu a.ekflexmenu_link_selected:hover
{
    /* A; selected and hovered version of ekflexmenu_link, see above... */
    color: #ff6600;
    display: block;
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 0;
    text-decoration: none;
    text-indent: 0;
}

.flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_2_ekflexmenu_submenu .ekflexmenu_button
{
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
    margin: 0;
    padding: 0 0 5px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    width: 100%;
}

.flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_2_ekflexmenu_submenu .ekflexmenu_button_hover, .flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_2_ekflexmenu_submenu .ekflexmenu_button:hover
{
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
    margin: 0;
    padding: 0 0 5px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    width: 100%;
    text-decoration: underline;
}

.flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_2_ekflexmenu_submenu .ekflexmenu_button_selected, .flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_2_ekflexmenu_submenu .ekflexmenu_button_selected_hover, .flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_2_ekflexmenu_submenu .ekflexmenu_button_selected:hover
{
    color: #ff6600;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 5px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    width: 100%;
}

.flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_3_ekflexmenu_submenu .ekflexmenu_button
{
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
    margin: 0;
    padding: 0 0 5px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    width: 100%;
}

.flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_3_ekflexmenu_submenu .ekflexmenu_button_hover, .flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_3_ekflexmenu_submenu .ekflexmenu_button:hover
{
    color: #333333;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
    margin: 0;
    padding: 0 0 5px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    width: 100%;
    text-decoration: underline;
}

.flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_3_ekflexmenu_submenu .ekflexmenu_button_selected, .flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_3_ekflexmenu_submenu .ekflexmenu_button_selected_hover, .flymenu .ekflexmenu_submenu_items .ekflexmenu_menu_level_3_ekflexmenu_submenu .ekflexmenu_button_selected:hover
{
    color: #ff6600;
    display: block;
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 5px 0;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    width: 100%;
}

