/*                                                                          */
/* 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.     */
/*                                                                          */


a h2
{
    color:#535353;
    font-size: 12px;
    margin: 0px 0px 10px 0px;
}

a h2:hover
{
     text-decoration: underline;
}

.gsSiteMap .ekflexmenu
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
   
    width: 180px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-family:Verdana;
    padding-bottom: 5px;
    display: block;
}


.gsSiteMap UL
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding:0px;
	display: block;
}

.gsSiteMap LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: block;
}


.gsSiteMap .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: block;
}


/* Nested menu items */
.gsSiteMap .ekflexmenu_submenu_items .ekflexmenu_submenu_items,
.gsSiteMap .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden,
.gsSiteMap .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 */
	   display: block;
}

/* Button menu items, controls visibility of associated sub-menus */
.gsSiteMap .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:#BA4E09;
    font-size: 12px;
    font-weight:600;
    text-decoration: none;
    padding-left: 14px;
    margin: 3px 0 3px 0;
    list-style: none;
    background: url('/img/nav-expand-closed.gif') no-repeat; 
    background-position: left top;
    display: block; /* force one link per row */
}

.gsSiteMap .ekflexmenu_button:hover{
 text-decoration: underline;
 display: block;
}

.gsSiteMap .ekflexmenu_button_selected,.gsSiteMap .ekflexmenu_button_selected:hover,
.gsSiteMap .ekflexmenu_button:focus
{
	/* A; selected version of .ekflexmenu_button, see above... */
    color: #000000;
    font-size: 12px;
    font-weight:600;
    list-style: none;
    text-decoration: none;
    padding-left: 14px;
    margin: 3px 0 3px 0;
    background: url('/img/nav-expand-open.gif') no-repeat;
    background-position: left top;
    display: block; /* force one link per row */
}


/* Sub Link menu items */
.gsSiteMap a.ekflexmenu_link,
.gsSiteMap a.ekflexmenu_link:link,
.gsSiteMap a.ekflexmenu_link:visited {
/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 2px 0px 2px 10px;
    color:#BA4E09;
    font-weight:normal;
    font-size: 11px;
    display: block; /* force one link per row */
    width: 80%; /* fill entire row with link */
    text-decoration: none;
    margin:3px 0px 3px 5px;
    display: block;
}

/*.ekflexmenu_submenu_items a:hover */
.gsSiteMap a.ekflexmenu_link:hover,
.gsSiteMap a.ekflexmenu_link:active,
.gsSiteMap a.ekflexmenu_link:focus  {
/* A; hovered version of ekflexmenu_link, see above... */
    padding: 2px 0px 2px 10px;
    color:#BA4E09;
    font-weight:normal;
    font-size: 11px;
    display: block; /* force one link per row */
    width: 80%; /* fill entire row with link */
    text-decoration: underline;
    margin-left:5px;
    display: block;
}

.gsSiteMap a.ekflexmenu_link_selected,
.gsSiteMap a.ekflexmenu_link_selected:hover{
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 2px 0px 2px 10px;
    color:#000000;
    font-size: 11px;
    font-weight:normal;
    display: block;
    width: 80%;
    text-decoration: none;
    background-position:left center;
    margin-left:5px;
    display: block;
}

.gsSiteMap h2
{
	color:#535353;
    font-weight:bold;
	margin: 0px 0px 0px 0px;
	font-size: 12px;
	display: block;
}

/*Not used in GS menus right now*/
/* images */
.gsSiteMap .ekflexmenu_submenu_items a img,
.gsSiteMap .ekflexmenu_submenu_items_hidden a img {
	/* IMG; menu-item image, selected by CMS, can be used */
	/* with or in place of the textual title of the link. */
	display: block;
}

.gsSiteMap .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
	display: block;
}