/*                                                                          */
/* 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.     */
/*                                                                          */

.cmsflexnavslave .ekflexmenu {
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
	/* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
	margin: 0;
	padding: 0;
	border: none;
}

.cmsflexnavslave .ekflexmenu_submenu,
.cmsflexnavslave .ekflexmenu_submenu_hover,
.cmsflexnavslave .ekflexmenu_submenu_parent,
.cmsflexnavslave .ekflexmenu_submenu_parent_hover {
	/* DIV; holds submenu items, such as a submenu title and links. */
	margin: 0;
	padding: 0;
}

.cmsflexnavslave UL {
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	display: block;
	margin: 0 0 -20px 0;
	padding: 0;
	width: 151px;
	text-align: right;
}

.cmsflexnavslave LI {
	/* LI; container for menu items (typically either links or sub-menus). */
	display: block;
	margin: 0;
	padding-bottom: 12px;
}

.cmsflexnavslave .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
	position: relative;
	top: 0px;
	left: 0px;
	clear: left;
	font-weight: bold;
}

/*.cmsflexnavslave .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items*/
.cmsflexnavslave LI.ekflexmenu_startlevel {
	/*display: block;
	float: left;
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;*/
}

.cmsflexnavslave .ekflexmenu_startlevel UL {
	/*position: absolute;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;*/
}

/* Button menu items, controls visibility of associated sub-menus */
.cmsflexnavslave .ekflexmenu_button,
.cmsflexnavslave .ekflexmenu_button_hover,
.cmsflexnavslave .ekflexmenu_button_selected,
.cmsflexnavslave .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;
	padding: 0;
	color: #F00; color specified in case image unavailable
	width: 100%; /* capture on-click for entire row that the button occupies */

}

.cmsflexnavslave .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). */
	visibility: hidden;
	display: none;
}

.cmsflexnavslave .ekflexmenu_button {
	/*background-color: rgb(47, 47, 97);
	background-repeat: repeat-x;*/
}

.cmsflexnavslave .ekflexmenu_button:focus,
.cmsflexnavslave .ekflexmenu_button:hover,
.cmsflexnavslave .ekflexmenu_button_hover {
	/*background-color: rgb(47, 47, 97);
	background-repeat: repeat-x;*/
}

.cmsflexnavslave .ekflexmenu_button_selected {
	/*background: rgb(47, 47, 97); color specified in case image unavailable */
}

.cmsflexnavslave .ekflexmenu_button_selected_hover {
}

.cmsflexnavslave img {
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.cmsflexnavslave a.ekflexmenu_link,
.cmsflexnavslave a.ekflexmenu_link_selected {
	/*padding: 0;
	display: block;  force one link per row
	border: none;*/
	text-decoration: none;
}

.cmsflexnavslave a.ekflexmenu_link, 
.cmsflexnavslave a.ekflexmenu_link:link, 
.cmsflexnavslave a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
}

/*.ekflexmenu_submenu_items a:hover */
.cmsflexnavslave a.ekflexmenu_link:hover, 
.cmsflexnavslave a.ekflexmenu_link:active, 
.cmsflexnavslave a.ekflexmenu_link:focus {
	/* A; hovered version of ekflexmenu_link, see above... */
text-decoration: underline;
	
}


.cmsflexnavslave a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	font-weight: bold;
	font-style: italic;
	color:#b2045e;
}

.cmsflexnavslave a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	font-weight: bold;
	font-style: italic;
	color:#b2045e;
}