/*                                                                          */
/* 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.     */
/*                                                                          */

/* Begin Attributes for Grey Bars (Default)*/

.flyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255);
    width: 120px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px; /* Doesn't currently affect look; fonts set specifically further down */
    font-family: Sans-Serif;
    background: rgb(100,100,150); /* shows up on left side, widens with nesting level */
    border-right: solid 1px rgb(71, 71, 71);
    border-bottom: solid 0px rgb(71, 71, 71);
    position: relative;
    z-index:9999;
    
}

.flyout .ekflexmenu_submenu,
.flyout .ekflexmenu_submenu_hover,
.flyout .ekflexmenu_submenu_parent,
.flyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: -10px; /*added in an attempt to set main and submenus separately */
	left: 0px;
	position: relative;
	width: 120px;
	font-size: 12px; /*  Added to make the menu font sizes consistent */
}



.flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 200px;
	margin-left: 0px;
	font-size: 12px; /*  Added to make the menu font sizes consistent */
	
}

.flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: absolute; /*changed from relative July 17, 2009 */
	top: 20px; /*trying to move submenus down */
	left: 0px;
}

.flyout .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;
}

.flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
}

.flyout .ekflexmenu LI
{
    display: block;
}

.flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;
}

/* Button menu items, controls visibility of associated sub-menus */
.flyout .ekflexmenu_button,
.flyout .ekflexmenu_button_hover,
.flyout .ekflexmenu_button_selected,
.flyout .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: 2px 0px;
    font-weight: bold;
    color: rgb(0, 0, 0); /* changed from color: rgb(255, 255, 255); */
    background: rgb(47, 47, 97); /* url(ek_menu_ex__btnWorkareaBlueVista.jpg) repeat-x; /* color specified in case image unavailable */
    text-indent: 2px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.flyout .ekflexmenu_button
{
    background: rgb(206, 206, 206)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaBlueVista.jpg)*/ repeat-x; /* color specified in case image unavailable */
   
}

.flyout .ekflexmenu_button:focus,
.flyout .ekflexmenu_button:hover,
.flyout .ekflexmenu_button_hover
{
    background: rgb(240, 240, 240) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVista.jpg) */ repeat-x; /* color specified in case image unavailable */
}
.flyout .ekflexmenu_button_selected
{
    background: rgb(240, 240, 240) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelected.jpg)*/ repeat-x; /* color specified in case image unavailable */
}
.flyout .ekflexmenu_button_selected_hover
{
    background: rgb(240, 240, 240)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelectedHover.jpg) */ repeat-x; /* color specified in case image unavailable */
}

.flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.flyout a.ekflexmenu_link,
.flyout a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    text-indent: 2px;
    display: block; /* force one link per row */
    /*width: 100%;  fill entire row with link */
    width: 200;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.flyout a.ekflexmenu_link, 
.flyout a.ekflexmenu_link:link, 
.flyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: rgb(0, 0, 0); /* changed from color: rgb(0, 0, 160); */
    background: rgb(206, 206, 206); /*changed from background: rgb(238, 238, 238); */
    text-decoration: none;
}
/*.ekflexmenu_submenu_items a:hover */
.flyout a.ekflexmenu_link:hover, 
.flyout a.ekflexmenu_link:active, 
.flyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: rgb(0, 0, 0); /* changed from 255, 255, 255 */
    background : rgb(240, 240, 240); /* changed from background : rgb(181, 166, 132); */
    text-decoration: none;
    border-color: rgb(220, 220, 220);
}

.flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	color: rgb(0, 0, 0); /* Changed from color: rgb(0, 89, 231);*/
    background: rgb(206, 206, 206); /* changed from background: rgb(206, 190, 140); */
    border-color : rgb(220, 220, 220);
}
.flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	color: rgb(0, 0, 0); /* changed from color: rgb(198, 211, 255); */
    background: rgb(240, 240, 240); /* changed from background: rgb(161, 141, 81); */
    border-color : rgb(220, 220, 220);
}

/* End Attributes for Grey Bars */

/*Begin Attributes for Blue Bar */
.menublue .flyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255);
    width: 86px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px; /* Doesn't currently affect look; fonts set specifically further down */
    font-family: Sans-Serif;
    background: rgb(0, 52, 102); /* shows up on left side, widens with nesting level */
    border-right: solid 1px rgb(71, 71, 71);
    border-bottom: solid 0px rgb(71, 71, 71);
    position:relative;
    z-index:10000;
    
}

.menublue .flyout .ekflexmenu_submenu,
.menublue .flyout .ekflexmenu_submenu_hover,
.menublue .flyout .ekflexmenu_submenu_parent,
.menublue .flyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: -16px; /*added in an attempt to set main and submenus separately */
	left: 0px;
	position: relative;
	width: 86px
}



.menublue .flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 200px;
	margin-left: 0px;
}

.menublue .flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.menublue .flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: absolute; /*changed from relative July 17, 2009 */
	top: 20px; /*trying to move submenus down */
	left: 0px;
}

.menublue .flyout .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;
}

.menublue .flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
}

.menublue .flyout .ekflexmenu LI
{
    display: block;
}

.menublue .flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;
}

/* Button menu items, controls visibility of associated sub-menus */
.menublue .flyout .ekflexmenu_button,
.menublue .flyout .ekflexmenu_button_hover,
.menublue .flyout .ekflexmenu_button_selected,
.menublue .flyout .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: 2px 0px;
    font-weight: bold;
    color: rgb(255, 255, 255); /* changed from color: rgb(255, 255, 255); */
    background: rgb(0, 52, 102); /* url(ek_menu_ex__btnWorkareaBlueVista.jpg) repeat-x; /* color specified in case image unavailable */
    text-indent: 2px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.menublue .flyout .ekflexmenu_button
{
    background: rgb(0, 52, 102)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaBlueVista.jpg)*/ repeat-x; /* color specified in case image unavailable */
   
}

.menublue .flyout .ekflexmenu_button:focus,
.menublue .flyout .ekflexmenu_button:hover,
.menublue .flyout .ekflexmenu_button_hover
{
    background: rgb(0, 52, 102) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVista.jpg) */ repeat-x; /* color specified in case image unavailable */
}
.menublue .flyout .ekflexmenu_button_selected
{
    background: rgb(67, 97, 126) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelected.jpg)*/ repeat-x; /* color specified in case image unavailable */
}
.menublue .flyout .ekflexmenu_button_selected_hover
{
    background: rgb(67, 97, 126)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelectedHover.jpg) */ repeat-x; /* color specified in case image unavailable */
}

.menublue .flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.menublue .flyout a.ekflexmenu_link,
.menublue .flyout a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    text-indent: 2px;
    display: block; /* force one link per row */
    /*width: 100%;  fill entire row with link */
    width: 200;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.menublue .flyout a.ekflexmenu_link, 
.menublue .flyout a.ekflexmenu_link:link, 
.menublue .flyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: rgb(255, 255, 255); /* changed from color: rgb(0, 0, 160); */
    background: rgb(0, 52, 102); /*changed from background: rgb(238, 238, 238); */
    text-decoration: none;
}
/*.ekflexmenu_submenu_items a:hover */
.menublue .flyout a.ekflexmenu_link:hover, 
.menublue .flyout a.ekflexmenu_link:active, 
.menublue .flyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: rgb(255, 255, 255); /* changed from 255, 255, 255 */
    background : rgb(67, 97, 126); /* changed from background : rgb(181, 166, 132); */
    text-decoration: none;
    border-color: rgb(220, 220, 220);
}

.menublue .flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	color: rgb(255, 255, 255);
    background: rgb(0, 52, 102);
    border-color : rgb(220, 220, 220);
}
.menublue .flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	color: rgb(255, 255, 255);
    background: rgb(67, 97, 126);
    border-color : rgb(220, 220, 220);
}

/* End Attributes for Blue Bar */


/* Begin Attributes for Grey Bars (Right End)*/

.menugreyrt .flyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255);
    width: 148px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px; /* Doesn't currently affect look; fonts set specifically further down */
    font-family: Sans-Serif;
    background: rgb(100,100,150); /* shows up on left side, widens with nesting level */
    border-right: solid 1px rgb(71, 71, 71);
    border-bottom: solid 0px rgb(71, 71, 71);
    position: relative;
    z-index:9999;
    
}

.menugreyrt .flyout .ekflexmenu_submenu,
.menugreyrt .flyout .ekflexmenu_submenu_hover,
.menugreyrt .flyout .ekflexmenu_submenu_parent,
.menugreyrt .flyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: -10px; /*added in an attempt to set main and submenus separately */
	left: 0px;
	position: relative;
	width: 140px
}



.menugreyrt .flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 140px;
	margin-left: 0px;
	
}

.menugreyrt .flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.menugreyrt .flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: absolute; /*changed from relative July 17, 2009 */
	top: 20px; /*trying to move submenus down */
	left: 0px;
}

.menugreyrt .flyout .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;
}

.menugreyrt .flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
}

.menugreyrt .flyout .ekflexmenu LI
{
    display: block;
}

.menugreyrt .flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;
}

/* Button menu items, controls visibility of associated sub-menus */
.menugreyrt .flyout .ekflexmenu_button,
.menugreyrt .flyout .ekflexmenu_button_hover,
.menugreyrt .flyout .ekflexmenu_button_selected,
.menugreyrt .flyout .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: 2px 0px;
    font-weight: bold;
    color: rgb(0, 0, 0); /* changed from color: rgb(255, 255, 255); */
    background: rgb(47, 47, 97); /* url(ek_menu_ex__btnWorkareaBlueVista.jpg) repeat-x; /* color specified in case image unavailable */
    text-indent: 2px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.menugreyrt .flyout .ekflexmenu_button
{
    background: rgb(206, 206, 206)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaBlueVista.jpg)*/ repeat-x; /* color specified in case image unavailable */
   
}

.menugreyrt .flyout .ekflexmenu_button:focus,
.menugreyrt .flyout .ekflexmenu_button:hover,
.menugreyrt .flyout .ekflexmenu_button_hover
{
    background: rgb(240, 240, 240) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVista.jpg) */ repeat-x; /* color specified in case image unavailable */
}
.menugreyrt .flyout .ekflexmenu_button_selected
{
    background: rgb(240, 240, 240) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelected.jpg)*/ repeat-x; /* color specified in case image unavailable */
}
.menugreyrt .flyout .ekflexmenu_button_selected_hover
{
    background: rgb(240, 240, 240)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelectedHover.jpg) */ repeat-x; /* color specified in case image unavailable */
}

.menugreyrt .flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.menugreyrt .flyout a.ekflexmenu_link,
.menugreyrt .flyout a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    text-indent: 2px;
    display: block; /* force one link per row */
    /*width: 100%;  fill entire row with link */
    width: 200;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.menugreyrt .flyout a.ekflexmenu_link, 
.menugreyrt .flyout a.ekflexmenu_link:link, 
.menugreyrt .flyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: rgb(0, 0, 0); /* changed from color: rgb(0, 0, 160); */
    background: rgb(206, 206, 206); /*changed from background: rgb(238, 238, 238); */
    text-decoration: none;
}
/*.ekflexmenu_submenu_items a:hover */
.menugreyrt .flyout a.ekflexmenu_link:hover, 
.menugreyrt .flyout a.ekflexmenu_link:active, 
.menugreyrt .flyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: rgb(0, 0, 0); /* changed from 255, 255, 255 */
    background : rgb(240, 240, 240); /* changed from background : rgb(181, 166, 132); */
    text-decoration: none;
    border-color: rgb(220, 220, 220);
}

.menugreyrt .flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	color: rgb(0, 0, 0); /* Changed from color: rgb(0, 89, 231);*/
    background: rgb(206, 206, 206); /* changed from background: rgb(206, 190, 140); */
    border-color : rgb(220, 220, 220);
}
.menugreyrt .flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	color: rgb(0, 0, 0); /* changed from color: rgb(198, 211, 255); */
    background: rgb(240, 240, 240); /* changed from background: rgb(161, 141, 81); */
    border-color : rgb(220, 220, 220);
}

/* End Attributes for Grey Bars Rightt End */


/*Begin Attributes for Blue Bar Right End */
.menubluert .flyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255);
    width: 120px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px; /* Doesn't currently affect look; fonts set specifically further down */
    font-family: Sans-Serif;
    background: rgb(0, 52, 102); /* shows up on left side, widens with nesting level */
    border-right: solid 1px rgb(71, 71, 71);
    border-bottom: solid 0px rgb(71, 71, 71);
    position:relative;
    z-index:10000;
    
}

.menubluert .flyout .ekflexmenu_submenu,
.menubluert .flyout .ekflexmenu_submenu_hover,
.menubluert .flyout .ekflexmenu_submenu_parent,
.menubluert .flyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: -16px; /*added in an attempt to set main and submenus separately */
	left: 0px;
	position: relative;
	width: 152px
}



.menubluert .flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 152px;
	margin-left: 0px;
	
}

.menubluert .flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.menubluert .flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: absolute; /*changed from relative July 17, 2009 */
	top: 20px; /*trying to move submenus down */
	left: 0px;
}

.menubluert .flyout .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;
}

.menubluert .flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
}

.menubluert.flyout .ekflexmenu LI
{
    display: block;
}

.menubluert .flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;
}

/* Button menu items, controls visibility of associated sub-menus */
.menubluert .flyout .ekflexmenu_button,
.menubluert .flyout .ekflexmenu_button_hover,
.menubluert .flyout .ekflexmenu_button_selected,
.menubluert .flyout .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: 2px 0px;
    font-weight: bold;
    color: rgb(255, 255, 255); /* changed from color: rgb(255, 255, 255); */
    background: rgb(0, 52, 102); /* url(ek_menu_ex__btnWorkareaBlueVista.jpg) repeat-x; /* color specified in case image unavailable */
    text-indent: 2px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.menubluert .flyout .ekflexmenu_button
{
    background: rgb(0, 52, 102)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaBlueVista.jpg)*/ repeat-x; /* color specified in case image unavailable */
   
}

.menubluert .flyout .ekflexmenu_button:focus,
.menubluert .flyout .ekflexmenu_button:hover,
.menubluert .flyout .ekflexmenu_button_hover
{
    background: rgb(0, 52, 102) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVista.jpg) */ repeat-x; /* color specified in case image unavailable */
}
.menubluert .flyout .ekflexmenu_button_selected
{
    background: rgb(67, 97, 126) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelected.jpg)*/ repeat-x; /* color specified in case image unavailable */
}
.menubluert .flyout .ekflexmenu_button_selected_hover
{
    background: rgb(67, 97, 126)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelectedHover.jpg) */ repeat-x; /* color specified in case image unavailable */
}

.menubluert .flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.menubluert .flyout a.ekflexmenu_link,
.menubluert .flyout a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    text-indent: 2px;
    display: block; /* force one link per row */
    /*width: 100%;  fill entire row with link */
    width: 200;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.menubluert .flyout a.ekflexmenu_link, 
.menubluert .flyout a.ekflexmenu_link:link, 
.menubluert .flyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: rgb(255, 255, 255); /* changed from color: rgb(0, 0, 160); */
    background: rgb(0, 52, 102); /*changed from background: rgb(238, 238, 238); */
    text-decoration: none;
}
/*.ekflexmenu_submenu_items a:hover */
.menubluert .flyout a.ekflexmenu_link:hover, 
.menubluert .flyout a.ekflexmenu_link:active, 
.menubluert .flyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: rgb(255, 255, 255); /* changed from 255, 255, 255 */
    background : rgb(67, 97, 126); /* changed from background : rgb(181, 166, 132); */
    text-decoration: none;
    border-color: rgb(181, 166, 132);
}

.menubluert .flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	color: rgb(255, 255, 255);
    background: rgb(0, 52, 102);
    border-color : rgb(206, 190, 140);
}
.menubluert .flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	color: rgb(255, 255, 255);
    background: rgb(0, 52, 102);
    border-color : rgb(161, 141, 112);
}

/* End Attributes for Blue Bar Right End */

/* Begin Attributes for Grey Bars (Elecciones)*/

.elecciones .flyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255);
    width: 190px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px; /* Doesn't currently affect look; fonts set specifically further down */
    font-family: Sans-Serif;
    background: rgb(100,100,150); /* shows up on left side, widens with nesting level */
    border-right: solid 1px rgb(71, 71, 71);
    border-bottom: solid 0px rgb(71, 71, 71);
    position: relative;
    z-index:9999;
    
}

.elecciones .flyout .ekflexmenu_submenu,
.elecciones .flyout .ekflexmenu_submenu_hover,
.elecciones .flyout .ekflexmenu_submenu_parent,
.elecciones .flyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: -10px; /*added in an attempt to set main and submenus separately */
	left: 0px;
	position: relative;
	width: 190px
}



.elecciones .flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 200px;
	margin-left: 0px;
	
}

.elecciones .flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.elecciones .flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: absolute; /*changed from relative July 17, 2009 */
	top: 20px; /*trying to move submenus down */
	left: 0px;
}

.elecciones .flyout .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;
}

.elecciones .flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
}

.elecciones .flyout .ekflexmenu LI
{
    display: block;
}

.elecciones .flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;
}

/* Button menu items, controls visibility of associated sub-menus */
.elecciones .flyout .ekflexmenu_button,
.elecciones .flyout .ekflexmenu_button_hover,
.elecciones .flyout .ekflexmenu_button_selected,
.elecciones .flyout .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: 2px 0px;
    font-weight: bold;
    color: rgb(0, 0, 0); /* changed from color: rgb(255, 255, 255); */
    background: rgb(47, 47, 97); /* url(ek_menu_ex__btnWorkareaBlueVista.jpg) repeat-x; /* color specified in case image unavailable */
    text-indent: 2px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.elecciones .flyout .ekflexmenu_button
{
    background: rgb(206, 206, 206)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaBlueVista.jpg)*/ repeat-x; /* color specified in case image unavailable */
   
}

.elecciones .flyout .ekflexmenu_button:focus,
.elecciones .flyout .ekflexmenu_button:hover,
.elecciones .flyout .ekflexmenu_button_hover
{
    background: rgb(240, 240, 240) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVista.jpg) */ repeat-x; /* color specified in case image unavailable */
}
.elecciones .flyout .ekflexmenu_button_selected
{
    background: rgb(240, 240, 240) /* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelected.jpg)*/ repeat-x; /* color specified in case image unavailable */
}
.elecciones .flyout .ekflexmenu_button_selected_hover
{
    background: rgb(240, 240, 240)/* was background: rgb(47, 47, 97)*/ /* url(ek_menu_ex__btnWorkareaOrangeVistaSelectedHover.jpg) */ repeat-x; /* color specified in case image unavailable */
}

.elecciones .flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.elecciones .flyout a.ekflexmenu_link,
.elecciones .flyout a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    text-indent: 2px;
    display: block; /* force one link per row */
    /*width: 100%;  fill entire row with link */
    width: 200;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.elecciones .flyout a.ekflexmenu_link, 
.elecciones .flyout a.ekflexmenu_link:link, 
.elecciones .flyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: rgb(0, 0, 0); /* changed from color: rgb(0, 0, 160); */
    background: rgb(206, 206, 206); /*changed from background: rgb(238, 238, 238); */
    text-decoration: none;
}
/*.ekflexmenu_submenu_items a:hover */
.elecciones .flyout a.ekflexmenu_link:hover, 
.elecciones .flyout a.ekflexmenu_link:active, 
.elecciones .flyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    color: rgb(0, 0, 0); /* changed from 255, 255, 255 */
    background : rgb(240, 240, 240); /* changed from background : rgb(181, 166, 132); */
    text-decoration: none;
    border-color: rgb(220, 220, 220);
}

.elecciones .flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	color: rgb(0, 0, 0); /* Changed from color: rgb(0, 89, 231);*/
    background: rgb(206, 206, 206); /* changed from background: rgb(206, 190, 140); */
    border-color : rgb(220, 220, 220);
}
.elecciones .flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	color: rgb(0, 0, 0); /* changed from color: rgb(198, 211, 255); */
    background: rgb(240, 240, 240); /* changed from background: rgb(161, 141, 81); */
    border-color : rgb(220, 220, 220);
}

/* End Attributes for Grey Bars - Elecciones */