/*                                                                          */
/* 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.     */
/*                                                                          */
.lcAudienceBlock
{
    margin:10px 0px 0px 0px;
    padding:0px;
    border-top:1px solid #333333;
}

.lcAudienceBlock .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #123a8d;
    font-size: 12px;
    font-family: verdana;
    margin:0px;
    padding:0px;
    font-weight:bold;
}

.lcAudienceBlock .ekflexmenu_submenu,
.lcAudienceBlock .ekflexmenu_submenu_hover,
.lcAudienceBlock .ekflexmenu_submenu_parent,
.lcAudienceBlock .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	top: 0px;
	left: 0px;
	
}

.lcAudienceBlock UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.lcAudienceBlock UL UL
{
    /* margin-left: 15px; */
    border-bottom-width: 0px;
    margin: 0px;
	padding: 0px;

}

.lcAudienceBlock UL UL UL
{
    padding-left: 0px;
    margin: 0px;

}

.lcAudienceBlock LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	/*display:inline;
	margin: 0px;
	padding: 0px;*/
	margin: 0px;
	padding:0px 0px;
	border-bottom:1px solid #666666;
	
}

.lcAudienceBlock UL UL UL LI
{
    margin: 0px;
    border-bottom:0px;
    background:#dedede;
    font-weight:normal;
    border-bottom:1px solid #bbbbbb;
}

.lcAudienceBlock .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
}

.lcAudienceBlock .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 */
.lcAudienceBlock .ekflexmenu_button,
.lcAudienceBlock .ekflexmenu_button:hover,
.lcAudienceBlock .ekflexmenu_button_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). */
    /* text-indent: 10px; */    
    display: block;
    padding: 3px 0px 3px 15px;
    color: #123a8d;
    text-decoration: none;
    background: url(/shared/images/arrow_off.jpg) center left no-repeat;
}

.lcAudienceBlock .ekflexmenu_button_selected,
.lcAudienceBlock .ekflexmenu_button_selected:hover,
.lcAudienceBlock .ekflexmenu_button_selected_hover
{
	/* A; selected version of .ekflexmenu_button, see above... */
    /* text-indent: 10px; */
    
    display: block;
    padding: 3px 0px 3px 15px;
    color: #e85a20;
    text-decoration: none;
    background: url(/shared/images/arrow_on.jpg) center left no-repeat #dedede;
    border-bottom:1px solid #bbbbbb;
}

/* images */
.lcAudienceBlock .ekflexmenu_submenu_items a img, 
.lcAudienceBlock .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 */
.lcAudienceBlock a.ekflexmenu_link, 
.lcAudienceBlock a.ekflexmenu_link:link, 
.lcAudienceBlock a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 3px 0px 3px 15px;
    /* text-indent: 10px; */
    color: #123a8d;
    text-decoration: none;
    display:block;
}
.lcAudienceBlock a.ekflexmenu_link:hover, 
.lcAudienceBlock a.ekflexmenu_link:active, 
.lcAudienceBlock a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    padding: 3px 0px 3px 15px;
    /* text-indent: 10px; */
    text-decoration: underline;
	color: #123a8d;
}

.lcAudienceBlock a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 3px 0px 3px 15px;
    /* text-indent: 10px; */
	color: #e85a20;
	
	text-decoration: none;
    display:block;
}
.lcAudienceBlock a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    padding: 3px 0px 3px 15px;
    /* text-indent: 10px; */
	color: #e85a20;
	text-decoration:underline;
}