/*                                                                          */
/* 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.     */
/*                                                                          */

/* 
#DCE6CF
ice sage

#FFFCCD
sauterne ice

#ACB6A7
frozen grass

#E3F1BA
Frozen Mints

#D5E0D8
mint fresh sky

*/

.advMenu .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255); /* default text color */
    font-size: 10px;
    font-weight:bold;
    font-family: Sans-Serif;
}

.advMenu .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;
}

.advMenu .ekmenu_unorderedlist_item 
{
	/* LI; container for menu items (typically either links or sub-menus). */
	/* Typical parent element: ul.ekmenu_unorderedlist */
    display:inline;   
    vertical-align:text-bottom;
    border-collapse:collapse;
    margin:0;
    padding:0;
}


/* Link menu items */
.advMenu a.ekmenu_link
{
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
    /* padding: 0px; padding: 5px 0px; *//* set all to zero for images */
    color: #669933; /* link text color */
	background-image: url(images/interior/btn_adventure_off.gif); /* color specified in case image */
	background-position:left;	
	background-repeat:no-repeat;
    display:block;
    height:26px;
    text-indent:5px;
    line-height:26px;
}




/*.ekmenu_submenu_items a:hover */
.advMenu a.ekmenu_link:hover, 
.advMenu a.ekmenu_link_selected,
.advMenu a.ekmenu_link_selected:hover   {
	/* A; hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
    /* padding: 0px; padding: 5px 0px; *//* set all to zero for images */
    color: white; /* link text color */
	background-image: url(images/interior/btn_adventure_on.gif); /* color specified in case image */
	background-position:left;	
	background-repeat:no-repeat;
    width:100%;
    display:block;
    height:26px;
    text-indent:5px;
    line-height:26px;
}

