/*                                                                          */
/* 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.     */
/*                                                                          */
                                                                          

.industries_menu
{
    margin-bottom:15px;
}

.industries_menu .ekflexmenu_submenu,
.industries_menu .ekflexmenu_submenu_hover,
.industries_menu .ekflexmenu_submenu_parent,
.industries_menu .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	color: #666;
	text-decoration: none;
	
		padding-left:4px;
	
	font-size:11px;
	}


.industries_menu LI
{
	/* UL; a container for menu list items (useful for non-graphical browsers).
	list-style: none;
	margin: 0px;
	padding: 0px;*/
	
	font-size: 11px;
	line-height: 150%;
	color: #666;
	margin: 0;
	padding: 0;

	
	list-style: none;
	margin-top: 4px;
	
	padding-left: 0;
	margin-left:1em;
	text-indent:-1em
	
}



.industries_menu .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
}

.industries_menu .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;
}

/* Nested menu items */
.industries_menu .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.industries_menu .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.industries_menu .ekflexmenu_submenu_items_hidden .ekflexmenu_submenu_items_hidden
{
	/* Rule is applied to nested submenus. Hidden included in-case */
	/* Javascript is not supported and hidden submenus are made visible. */
	margin-left: 5px; /* indents menu items, accumulating with each nesting level */
    border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
    font-size:11px;
    text-decoration:none;
}

/* Button menu items, controls visibility of associated sub-menus */
.industries_menu .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). */
    color: #666;
	text-decoration: none;
	background-image: url('/styles/img/bullet_navleft-off.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}



.industries_menu .ekflexmenu_button:focus,
.industries_menu .ekflexmenu_button:hover,
.industries_menu .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
    color: #666;
	/*text-decoration: underline;*/
	background-image: url('/styles/img/bullet_navleft-on.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}
.industries_menu .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
    color: #666;
	font-weight: bold;
	text-decoration: none;
	background-image: url('/styles/img/bullet_navleft-on.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}
.industries_menu .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
    color: #666;
	font-weight: bold;
	/*text-decoration: underline;*/
	background-image: url('/styles/img/bullet_navleft-on.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}


/* Link menu items */
.industries_menu a.ekflexmenu_link, 
.industries_menu a.ekflexmenu_link:link, 
.industries_menu a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: #666;
	text-decoration: none;
	background-image: url('/styles/img/bullet_navleft-off.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}
/*.ekflexmenu_submenu_items a:hover */
.industries_menu a.ekflexmenu_link:hover, 
.industries_menu a.ekflexmenu_link:active, 
.industries_menu a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: #666;
	text-decoration: underline;
	background-image: url('/styles/img/bullet_navleft-on.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}

.industries_menu a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
   	color: #666;
	font-weight: bold;
	text-decoration: none;
	background-image: url('/styles/img/bullet_navleft-off.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}
.industries_menu a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
   	color: #666;
	font-weight: bold;
	text-decoration: underline;
	background-image: url('/styles/img/bullet_navleft-on.gif');
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 1em;
}

.industries_menu a
{
    color:#666 !important;
}






