/*                                                                          */
/* 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.     */
/*                                                                          */

.slaveflyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #ffffff;
    width: 175px; /* (137) can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px;
    font-family: Sans-Serif;
    position:relative;
    left: -15px;

}

.slaveflyout .ekflexmenu_submenu,
.slaveflyout .ekflexmenu_submenu_hover,
.slaveflyout .ekflexmenu_submenu_parent,
.slaveflyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	left: 0px;
	position: relative;
}

.slaveflyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin:0px;
}

.slaveflyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
}

.slaveflyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    /*Makes This Show Inline - CD*/
	/*position: relative;*/
	left: 0px;
	clear: left;
	padding: 0px;
}

/*.slaveflyout .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items*/
.slaveflyout LI.ekflexmenu_startlevel
{
	display: block;
	width: 100%;
	height: 100%;
}

.slaveflyout .ekflexmenu_startlevel UL
{
	/*Makes This Show Inline - CD*/
	/*position: absolute;*/
	width: 100%;
	height: 100%;
	padding-left:10px;
}

/* Button menu items, controls visibility of associated sub-menus */
.slaveflyout .ekflexmenu_button,
.slaveflyout .ekflexmenu_button_hover,
.slaveflyout .ekflexmenu_button_selected,
.slaveflyout .ekflexmenu_button_selected_hover
{
	/* 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;
    color: #000000;
    padding:0 0 0 15px;
    width: 165px; /* (100%) capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.slaveflyout .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;
}

.slaveflyout .ekflexmenu_button
{
    background: #FFFFFF; /* Default Background Color For buttons */
    background-image: url(/imgs/NavArrow.gif);
    background-repeat:no-repeat;
    background-position: 0 2px;
    margin-bottom:5px;
}

.slaveflyout .ekflexmenu_button:focus,
.slaveflyout .ekflexmenu_button:hover,
.slaveflyout .ekflexmenu_button_hover
{
    color: #a90003;
    /*text-decoration: underline;*/
    background-image: url(/imgs/NavArrowHover.gif);
    background-repeat:no-repeat;
    background-position:0 2px;
    margin-bottom:5px;
}
.slaveflyout .ekflexmenu_button_selected
{
    color: #336699;
    background-image: url(/imgs/NavArrowSelected.gif);
    background-repeat:no-repeat;
    background-position:0 2px;
    margin-bottom:5px;
}
.slaveflyout .ekflexmenu_button_selected_hover
{
    color: #a90003;
    background-image: url(/imgs/NavArrowSelectedHover.gif);
    background-repeat:no-repeat;
    background-position:0 2px;
    margin-bottom:5px;
}

.slaveflyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.slaveflyout a.ekflexmenu_link,
.slaveflyout a.ekflexmenu_link_selected 
{
    display: block; /* force one link per row */
    width: 155px; /* (100%) fill entire row with link */
    margin-bottom:5px;
}
.slaveflyout a.ekflexmenu_link, 
.slaveflyout a.ekflexmenu_link:link, 
.slaveflyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: #336699;
    background: #FFFFFF;
    text-decoration: underline;
    padding-left:15px;
    outline: none;
}



/*.ekflexmenu_submenu_items a:hover */
.slaveflyout a.ekflexmenu_link:hover, 
.slaveflyout a.ekflexmenu_link:active, 
.slaveflyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: #a90003;
    text-decoration: none;
}

.slaveflyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    /*color: #CD8221;*/
    border-color : rgb(206, 190, 140);
    text-decoration: none;
    padding-left:15px;
    font-weight:bold;
}
.slaveflyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    /*color: #CD8221;*/
    border-color : rgb(161, 141, 112);
    text-decoration: underline;
    padding-left:15px;
    font-weight:bold;
}

.slaveflyout .ekflexmenu_menu_level_2 a.ekflexmenu_link, 
.slaveflyout .ekflexmenu_menu_level_2 a.ekflexmenu_link:link, 
.slaveflyout .ekflexmenu_menu_level_2 a.ekflexmenu_link:visited,
.slaveflyout .ekflexmenu_menu_level_2 a.ekflexmenu_link_selected
{
	color:#251C5C
}

.slaveflyout .ekflexmenu_menu_level_3 a.ekflexmenu_link, 
.slaveflyout .ekflexmenu_menu_level_3 a.ekflexmenu_link:link, 
.slaveflyout .ekflexmenu_menu_level_3 a.ekflexmenu_link:visited,
.slaveflyout .ekflexmenu_menu_level_3 a.ekflexmenu_link_selected
{
	color:#454545;
}

.slaveflyout .ekflexmenu_menu_level_4 a.ekflexmenu_link, 
.slaveflyout .ekflexmenu_menu_level_4 a.ekflexmenu_link:link, 
.slaveflyout .ekflexmenu_menu_level_4 a.ekflexmenu_link:visited,
.slaveflyout .ekflexmenu_menu_level_4 a.ekflexmenu_link_selected
{
	color:#737373;
}

.slaveflyout #e4c7403e8_10_234_button
{
	font-weight:normal;
}
.ekflexmenu_submenu_items li 
{
padding-top: 3px;
}
