﻿/*                                                                          */
/* 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.     */
/*                                                                          */

.horizontal .ekflexmenu 
{
	/*padding: 10px 10px 10px 10px;*/
	padding: 0px 0px 0px 0px;
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
	position: relative;
    width: 980px;
    height: 33px;
    max-height: 33px;
    border: 0px solid red;
    overflow: hidden;
    
}

.horizontal A
{
	text-decoration: none;
	font-size: 14px !important;
	font-family:Arial, Helvetica !important;
}


.horizontal UL
{
	margin: 0;
    width: 980px;
    list-style: none;
    padding: 0;
}

.horizontal LI
{
	border-right: 0px solid black;
	float: left;
	display: inline;
	position: relative;
	margin: 0px;
	margin-right: 2px;
	padding: 0px;
	width: 138px;
}


.horizontal .ekflexmenu_button
{
    display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_off.gif) no-repeat;
    text-align:center;
    width: 100%;
    height: 33px;
}
.horizontal .ekflexmenu_button_hover
{
    display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_active.gif) no-repeat;
    text-align:center;
    width: 100%;height: 33px;
}
.horizontal .ekflexmenu_button_selected
{
    display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_active.gif) no-repeat;
    text-align:center;
    width: 100%;
    height: 33px;
    
}
.horizontal .ekflexmenu_button_selected_hover
{
    display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_active.gif) no-repeat;
    text-align:center;
    width: 100%;height: 33px;
    
}

.horizontal img 
{
	border-width: 0px;
}

.horizontal a.ekflexmenu_link, 
.horizontal a.ekflexmenu_link:link, 
.horizontal a.ekflexmenu_link:visited {
     display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_off.gif) no-repeat;
    text-align:center;
    width: 100%;
    height: 33px;
}
.horizontal a.ekflexmenu_link:hover, 
.horizontal a.ekflexmenu_link:active, 
.horizontal a.ekflexmenu_link:focus  {
     display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_active.gif) no-repeat;
    text-align:center;
    width: 100%;
    height: 33px;
}

.horizontal a.ekflexmenu_link_selected {
   display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_active.gif) no-repeat;
    text-align:center;
    width: 100%;
    height: 33px;
}
.horizontal a.ekflexmenu_link_selected:hover {
     display: block;
    padding: 6px 0px;
    font-weight: bold;
    color:#000;    background: url(/images/topnav_active.gif) no-repeat;
    text-align:center;
    width: 100%;
    height: 33px;
}

/*sub menu items - not using on home page */

.horizontal .ekflexmenu_submenu,
.horizontal .ekflexmenu_submenu_hover,
.horizontal .ekflexmenu_submenu_parent,
.horizontal .ekflexmenu_submenu_parent_hover
{
	top: 0px;
	left: 0px;
	height: auto;
}

.horizontal .ekflexmenu_submenu_items 
{
	height:auto;
	margin-left: 0px;
    border-bottom-width: 0px;
    border-width: 0px;
    border-style: solid;
    border-color: Black;
    border: solid 0px black;
}

.horizontal .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
	position: relative;
	left: 0px;
	top: 0px;
	float: left;
}
.horizontal .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	left: 5px;
	top: 100%;
	float: none;
	width: 120px;
}

.horizontal .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items
{
	position: absolute;
	left: 100%;
	top: 0px;
}

.horizontal .ekflexmenu .ekflexmenu_submenu_items_hidden 
{
	display: none;
}
