/*                                                                          */
/* 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.     */
/*                                                                          */
/* #0038A8 - this is swic blue */


.top_left_nav,
.top_left_nav *
{
 z-index:8000;
 
} /* This selector was added by Bryce 04/28/2010 
     Neccesary to draw the flexmenu on top of a webcalendar.
     Web calendar's CSS declares the header to be .RadScheduler .rsHeader{z-index:99}
     Setting .top_left_nav's z-index to 100 will make sure the dropdowns on the flexmenu are not hidden behind the webcalendar header
   */


/*   does not work - Bryce
.top_left_nav .ekflexmenu_menu_level_1 a
{
display:block;
 background-color:lime;
 z-index:10000000;
}  /* This selector added by Bryce 04/28/2010
      Neccessary to draw flexmenu on top of webcalendar
      Without this part the fly-out submenus have a transparent background.  They will cover up the webcalendar's table layout, but the date-numbers are still visible through the menu
      Setting the background of menu_level_1 will make sure the flyouts block thier background, but menu_level_0 still lets the gradiant image show.
    */ 


.top_left_nav .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #0038A8 /*rgb(255, 255, 255)*/ ;
    width: 190px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px;
    font-family: Sans-Serif;
    /*background: red;  */
    /* 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 1px rgb(71, 71, 71); */
}

.top_left_nav .ekflexmenu_accessible_menu_start,
.top_left_nav .ekflexmenu_accessible_menu_startheading,
.top_left_nav .ekflexmenu_accessible_menu_startlink,
.top_left_nav .ekflexmenu_accessible_submenu_selected_message,
.top_left_nav .ekflexmenu_accessible_menuitem_selected_message,
.top_left_nav .ekflexmenu_accessible_menu_end,
.top_left_nav .ekflexmenu_accessible_menu_endlink
{
	/* These items support 508-Compliance, and are normally hidden, but */
	/* are visible to page readers and text-browsers for accessibility). */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
}

.top_left_nav .ekflexmenu_submenu,
.top_left_nav .ekflexmenu_submenu_hover,
.top_left_nav .ekflexmenu_submenu_parent,
.top_left_nav .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;/**/
	top: 0px;
	left: 0px;
	position: relative;/**/
	z-index: 1;
}

.top_left_nav UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;/**/
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.top_left_nav LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;/**/
	margin: 0px;
	padding: 0px;
}

.top_left_nav .ekflexmenu_submenu_items 
{
	/* DIV; container for menu lists. */
	/*overflow: hidden;
    border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: relative;
	top: 0px;
	left: 0px;/**/
}

.top_left_nav .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;
	
}

.top_left_nav .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
}

.top_left_nav .ekflexmenu LI
/* effects all LIs*/
{
    display: block;
    /*background-color: Teal;*/
    
}
/*attempt at getting at just the level 1 elements*/
.top_left_nav .ekflexmenu_menu_level_2 
{
  	padding: 5px 0px;
    background-color: yellow;

    
}

.top_left_nav .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
    /*doesn't seem to do sh*t.*/
	position: absolute;
	top: 5px;
	left:67%;
	width: 90%;
	/*height: 100%;*/
	background: white;
	background: #FBF5E7;
	border-style:solid; 
	border-width:1px;
	border-color: #0038A8;
}




.top_left_nav .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items a
{
	border-bottom: 1px solid rgb(220, 220, 220);

}


/* Button menu items, controls visibility of associated sub-menus */
.top_left_nav .ekflexmenu_button,
.top_left_nav .ekflexmenu_button_hover,
.top_left_nav .ekflexmenu_button_selected,
.top_left_nav .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: 5px 0px;
    font-weight: bold;
    color:  #0038A8 /*rgb(255, 255, 255)*/;
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;

}

.top_left_nav .ekflexmenu_button
{

}

/*.top_left_nav .ekflexmenu_button:focus,*/
.top_left_nav .ekflexmenu_button:hover,
.top_left_nav .ekflexmenu_button_hover
{
    /*background: #0038A8;  rgb(47, 47, 97) 
    color: white;*/
    text-decoration: underline;
}
.top_left_nav .ekflexmenu_button_selected /*menuitem selected*/
{
     /* background: orange;rgb(47, 47, 97) 
    color: White;*/
    text-decoration: none;
}
.top_left_nav .ekflexmenu_button_selected_hover /* menuitemselected hover properties*/
{
    /*background: orange; rgb(47, 47, 97) */
    text-decoration: underline !important;
}

.top_left_nav img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.top_left_nav a.ekflexmenu_link,
.top_left_nav a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
    /*border-bottom: 1px solid rgb(220, 220, 220);*/
    padding: 5px 0px;
}
.top_left_nav a.ekflexmenu_link, 
.top_left_nav a.ekflexmenu_link:link, 
.top_left_nav a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	/* sjr -- this is the color of the ektron edit items at the bottom of the menu, not part of the actual menu*/
    color: #0038A8;  /* rgb(0, 0, 160); commented 2/18 bb*/
    /* background: rgb(238, 238, 238);*/ 
    font-weight: bold;
    text-decoration: none;
}
/*.ekflexmenu_submenu_items a:hover */
.top_left_nav a.ekflexmenu_link:hover, 
/*.top_left_nav a.ekflexmenu_link:active, */ 
.top_left_nav a.ekflexmenu_link:focus {
	/* A; hovered version of ekflexmenu_link, see above... */
    /*color: rgb(255, 255, 255);*/
    /*background : rgb(181, 166, 132);*/
    text-decoration: underline; /*2/18 bb*/
    /*border-color: rgb(181, 166, 132);*/
}

.top_left_nav a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	/*  color: rgb(0, 89, 231);*/
    /*background: rgb(206, 190, 140);*/
    /*border-color : rgb(206, 190, 140);*/
}
.top_left_nav a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	/*color: rgb(198, 211, 255);*/
    /*background: rgb(161, 141, 81);*/
    /*border-color : rgb(161, 141, 112);*/
}
