/*                                                                          */
/* 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.     */
/*                                                                          */

.interiornav .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #000000;
    /*width: 148px;*/
    font-size: 14px;
    font-family: MetaWebPro-Normal,sans-serif;
    
}


.interiornav .ekflexmenu_menu_level_1 .ekflexmenu_button_hover,
.interiornav .ekflexmenu_menu_level_1 .ekflexmenu_button
{
    display:none;
}

.interiornav .ekflexmenu_menu_level_1 .ekflexmenu_button_selected,
.interiornav .ekflexmenu_menu_level_1 .ekflexmenu_button_selected_hover
{
     display:none;
}


.interiornav .ekflexmenu_menu_level_2 .ekflexmenu_button_hover,
.interiornav .ekflexmenu_menu_level_2 .ekflexmenu_button
{
    color: #e51b24;
    display:inline;
}

.interiornav .ekflexmenu_menu_level_2 .ekflexmenu_button_selected,
.interiornav .ekflexmenu_menu_level_2 .ekflexmenu_button_selected_hover
{
    color: #807f83;
    text-decoration: none;
    display:inline;
}

.interiornav .ekflexmenu_submenu,
.interiornav .ekflexmenu_submenu_hover,
.interiornav .ekflexmenu_submenu_parent,
.interiornav .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	top: 0px;
	left: 0px;
}

.interiornav UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	/*list-style: none;
	/*margin: 0px;
	padding: 0px;*/
	list-style: none;
    list-style-type: none;
    padding-top: 10px;
}

.interiornav LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	/*display:inline;
	margin: 0px;
	padding: 0px;*/
	padding-bottom: 10px;
	padding-bottom: 10px;
}

.interiornav .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    padding-left: 10px;
}

.interiornav .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 */
.interiornav .ekflexmenu_button
{
	/* 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). */
    text-indent: 5px;
    color: #da1a23;
    text-decoration: none;
    font-weight: normal;
}

.interiornav .ekflexmenu_button:hover,
.interiornav .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
    text-indent: 5px;
}
.interiornav .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
    font-weight: normal;
    text-indent: 5px;
    text-decoration: none;
    color: #da1a23;
}
.interiornav .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
    font-weight: normal;
    text-indent: 5px;
    text-decoration: underline;
}


/* images */
.interiornav .ekflexmenu_submenu_items a img, 
.interiornav .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 */
.interiornav a.ekflexmenu_link, 
.interiornav a.ekflexmenu_link:link, 
.interiornav a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 0px 0px 0px 0px;
    text-indent: 5px;
    color: rgb(50, 50, 50);
    text-decoration: none;
}
.interiornav a.ekflexmenu_link:hover, 
.interiornav a.ekflexmenu_link:active, 
.interiornav a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    text-indent: 5px;
    text-decoration: none;
}

.interiornav a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    text-indent: 5px;
	text-decoration: none;
}
.interiornav a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    text-indent: 5px;
	text-decoration: none;
}