/*                                                                          */
/* 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.     */
/*                                                                          */

.pressroom .ekflexmenu {
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    
	z-index: 10;
	width: 11.6em;
	margin-left: -.5em;
}
.pressroom A {
	font-family: Sans-Serif;
	text-decoration: none;
	font-size: .75em;
	padding-left: .5em;
	padding-top: .6em;
}
.pressroom .ekflexmenu_submenu, .pressroom .ekflexmenu_submenu_hover, .pressroom .ekflexmenu_submenu_parent, .pressroom .ekflexmenu_submenu_parent_hover {
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: 0px;
	left: 0px;
	position: relative;
}
.pressroom UL {
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.pressroom LI {
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}
.pressroom .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    display: block;
	position: relative;
	top: 0px;
	left: 0px;
}
.pressroom .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;
}
.pressroom .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items {
	display: block;
}
.pressroom .ekflexmenu LI {
	display: block;
}
.pressroom .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items {
	position: absolute;
	top: 0px;
	left: 12em;
	width: 100%;
	/*height: 100%;*/
}
/* Button menu items, controls visibility of associated sub-menus */

.pressroom .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). */
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #000;
	text-align:left;
	width: 100%;
	height: 1.8em;/*Since Text is .75 we use the padding to center the text and add 1/4 to the size of the div*/
}
.pressroom .ekflexmenu_button_hover {
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #303030;
	text-align:center;
	width: 100%;
	height: 1.8em;
}
.pressroom .ekflexmenu_button_selected {
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #303030;
	text-align:left;
	width: 100%;
	/*text-decoration: underline;*/
	height: 1.8em;
}
.pressroom .ekflexmenu_button_selected_hover {
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #303030;
	text-align:left;
	width: 100%;
	/*text-decoration: underline;*/
	height: 1.8em;
}
.pressroom img {
	border-width: 0px;
}
/* Link menu items */

.pressroom a.ekflexmenu_link, .pressroom a.ekflexmenu_link:link, .pressroom a.ekflexmenu_link:visited {
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #000;
	text-align:left;
	width: 100%;
	height: 1.8em;
}
/*.ekflexmenu_submenu_items a:hover */
.pressroom a.ekflexmenu_link:hover, .pressroom a.ekflexmenu_link:active, .pressroom a.ekflexmenu_link:focus {
	/* A; hovered version of ekflexmenu_link, see above... */
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #303030;
	text-align:left;
	width: 100%;
	height: 1.8em;
}
.pressroom a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #303030;
	width: 100%;
	height: 1.8em;
}
.pressroom a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	display: block;
	font-weight: bold;
	color: #FFF;
	background-color: #303030;
	width: 100%;
	height: 1.8em;
}

