/*                                                                          */
/* 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;*/
	
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */

	position: relative;
    width: 950px;
    height:24px;
    font-size: 12px;
    font-family: Verdana;
    white-space: nowrap;
    background:url(../../images/link.gif) repeat-x;
}

.horizontal A
{
	text-decoration: none;
}

.horizontal .ekflexmenu_submenu,
.horizontal .ekflexmenu_submenu_hover,
.horizontal .ekflexmenu_submenu_parent,
.horizontal .ekflexmenu_submenu_parent_hover
{
	top: 0px;
	left: 0px;
	height: 24px;
}

.horizontal UL
{
	list-style: none;
	height:24px;
	width:950px;
	margin:0px;
	padding:0px;
}

.horizontal LI
{
	float: left;
	list-style:none;
	
	
}

.horizontal .ekflexmenu_submenu_items 
{
	height:24px;
	margin-left: 0px;
    
}

.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;
	
}

.horizontal .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items
{
	position: absolute;
	left: 100%;
	top: 0px;
}

.horizontal .ekflexmenu .ekflexmenu_submenu_items_hidden 
{
	display: none;
}

.horizontal .ekflexmenu_button
{
	float:left;
	display: block;
    color:#666666;
    text-decoration:none;
    font-size:12px;
    font-family:Verdana;
    font-weight:bold;
    cursor:pointer;
    text-align:center;
    height:24px;
    padding-left:24px;
	padding-right:24px;
	line-height:22px;
      
}
.horizontal .ekflexmenu_button_hover
{
	float:left;
	display: block;
    color:white;
    text-decoration:none;
    font-size:12px;
    font-family:Verdana;
    font-weight:bold;
    cursor:pointer;
    text-align:center;
    height:24px;
    padding-left:24px;
	padding-right:24px;
	line-height:22px;
    background:url(../../images/over_link.gif) repeat-x;
    
}
.horizontal .ekflexmenu_button_selected
{
	float:left;
	display: block;
    color:white;
    text-decoration:none;
    font-size:12px;
    font-family:Verdana;
    font-weight:bold;
    cursor:pointer;
    text-align:center;
    height:24px;
    padding-left:24px;
	padding-right:24px;
	line-height:22px;
    background:url(../../images/over_link.gif) repeat-x;
	
    
}
.horizontal .ekflexmenu_button_selected_hover
{
	float:left;
	display:block;
    color:white;
    text-decoration:none;
    font-size:12px;
    font-family:Verdana;
    font-weight:bold;
    cursor:pointer;
    text-align:center;
    height:24px;
    padding-left:24px;
	padding-right:24px;
    background:url(../../images/over_link.gif) repeat-x;
    line-height:22px;
}

.horizontal img 
{
	border-width: 0px;
}

.horizontal a.ekflexmenu_link, 
.horizontal a.ekflexmenu_link:link, 
.horizontal a.ekflexmenu_link:visited 
{
	color:#666666;
    background:url(../../images/link.gif) repeat-x;
    padding-left:24px;
	padding-right:24px;
}
.horizontal a.ekflexmenu_link:hover, 
.horizontal a.ekflexmenu_link:active, 
.horizontal a.ekflexmenu_link:focus  {
    
    
    color:White;
    background:url(../../images/over_link.gif) repeat-x;
    padding-left:24px;
	padding-right:24px;
}

.horizontal a.ekflexmenu_link_selected 
{
	color:red;
    background:url(../../images/over_link.gif) repeat-x;
    padding-left:24px;
	padding-right:24px;
}
.horizontal a.ekflexmenu_link_selected:hover {
 
    color:red;
    background:url(../../images/over_link.gif) repeat-x;
    padding-left:24px;
	padding-right:24px;
}
.horizontal .ekmenu_menu_seperator
{
	/* SPAN; A seperator element that may be used to aid         */
	/* in formatting menu buttons, etc.                          */	
	/* Typical parent element: li.ekmenu_unorderedlist_item      */
	/*                                                           */
	/* Show seperators between top-level menu buttons:           */
	float:left;
	background-image:url(../../images/button_spacer.gif);
	
}
.horizontal .ekmenu_menu_level_0 .ekmenu_menu_seperator
{
	/* ...Hide all nested seperators (all but top level) */
	display: none; 
}