/*                                                                          */
/* NOTICE:                                                                  */
/*    To support more than one-single SmartMenu 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 SmartMenu       */
/*    within a div-tag, whose class-name will be derived from the filename. */
/*                                                                          */
/*    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.     */
/*                                                                          */

.mastermenu
{
	height:22px;
	background-image: url(/images/blue_header.png);
}

.mastermenu .ekmenu
{
	/* DIV; wraps the entire menu */ /* (the outer-most non-user container element) */
	width: 100%;
	white-space: nowrap;
}

/* These are the top-level items */
.mastermenu .ekmenu_menu_level_0
{
	text-align:right;
	
	width: 60px;
	float: right;
	display: inline;
	padding: 0px 10px 0px 10px;
	margin-right: 10px;
}

/* Top level separator */
.mastermenu .ekmenu_menu_seperator
{
	margin-top: 4px;
	width: 1px;
	height: 13px;
	float: right;
	display: inline;
	border-right: solid 1px gray;
}

.mastermenu .ekmenu_menu_level_0 .ekmenu_menu_seperator
{
	/* ...Hide all nested seperators (all but top level) */
	display: none;
}

.mastermenu .ekmenu_unorderedlist
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */ /* Typical parent element: div.ekmenu_submenu_items */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.mastermenu .ekmenu_unorderedlist_item
{
	/* LI; container for menu items (typically either links or sub-menus). */ /* Typical parent element: ul.ekmenu_unorderedlist */
	display: inline;
	margin: 0px;
	padding: 0px;
}

.mastermenu .ekmenu_menu_level_1
{
	/* ...Open submenus deeper than level 1 relative to the parent 'button' */ /* (without this they open at the top, this shifts them down to begin */ /* at the same vertical offset as the button that opened it). */
	position: relative;
}

/* This is the drop down part */
/* .mastermenu .ekmenu_submenu .ekmenu_unorderedlist, */
.mastermenu .ekmenu_menu_level_0 .ekmenu_submenu_items
{
	position:absolute;
	padding: 2px;
	width: auto;
	margin-left: 0px;
	border: solid 1px #3774c5;
	background-color: White;
	background-image: url(/images/box1.jpg);
	background-position: right;
	background-repeat: repeat-y;
	z-index: 999;
}


.mastermenu .ekmenu_submenu_items_hidden
{
	display: none;
}


/* Button menu items, controls visibility of associated sub-menus */
.mastermenu .ekmenu_button,
.mastermenu .ekmenu_button_hover,
.mastermenu .ekmenu_button_selected,
.mastermenu .ekmenu_button_selected_hover
{
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 12px;
	color: #841c1b;
	text-align: center;
	display: block;
	width: 100%;
	background: transparent;
	padding: 0px 6px 0px 6px;
	cursor: pointer;
}

.mastermenu .ekmenu_button_hover,
.mastermenu .ekmenu_button_selected_hover
{
	background: #d0d0d0;
}

/* Link menu items */
.mastermenu a.ekmenu_link,
.mastermenu a.ekmenu_link:link,
.mastermenu a.ekmenu_link:visited,
.mastermenu a.ekmenu_link:hover,
.mastermenu a.ekmenu_link:active,
.mastermenu a.ekmenu_link:focus,
.mastermenu a.ekmenu_link_selected,
.mastermenu a.ekmenu_link_selected:hover
{
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 17px;
	color: #1A4982;
	padding: 2px 6px 2px 6px;
	background: transparent;
	text-decoration: none;
	display: block;
	width: auto;
	border-bottom: 1px solid rgb(220, 220, 220); /* link row seperators */
	white-space: nowrap;
	text-align: left;
}


.mastermenu a.ekmenu_link:hover,
.mastermenu a.ekmenu_link_selected:hover
{
	text-decoration: underline;
	background-color: #d0d0d0;
}
