<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*************************************************************************
* This is the SKIN style definition for the CSS menu.                    *
* Feel free to customize this section.                                   *
*************************************************************************/

/*
 * Menu container settings
 * Applies to the first level menu container
 */
.menu {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 12px;
	font-weight:bold;
	text-align:center;
	}

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.menu ul {}

/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.menu li {}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.menu ul li {
	margin: 0px;
	width: 185px;
	background-image:none;
	background: #a0c629;
	border-bottom: solid 1px #8fbc03;
	color:#fff;
	filter:alpha(opacity=90);
	-moz-opacity:.90;opacity:.90;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.menu a {
	text-decoration: none;
	color: #fff;
	line-height: 30px;
	cursor: pointer;
	padding:0px 16px;
	background: underline;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.menu ul a {
background-image:none;
color:#fff;
font-weight:bold;
line-height:25px;
padding:0px 14px;
text-decoration:none;
text-transform: none;
}


/***************************************************************************
* In this section, we will define what happens when mouse-overing an item  *
***************************************************************************/

/*
 * Mouse over on menu items
 * Applies to all menu items in all menu containers
 */
.menu li.hover {
	background: none;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.menu ul li.hover {
	background: #8fbc03;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.menu a.hover {
	color:#ffe201 !important;
	background: none;	
	text-decoration:none; 	

	
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.menu ul a.hover {
  	color:#fff !important;
	background: #8fbc03;
	line-height:25px;
	padding:0px 14px;
	 text-decoration:none;
	
}

/*****************************************************************************
* In this section, we will define what happens when a menu item is selected  *
*****************************************************************************/

/*
 * Selected menu item
 * Applies to selected menu items in all menu containers
 */
.menu li.selected {
}

/*
 * Selected menu item
 * Applies to second (or more) level selected menu items
 */
.menu ul li.selected {
}

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.menu a.selected {
	color:#fff;
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.menu ul a.selected {
	color: #fff;
	}


/******************************************************************************
* In this section, we will define the menu arrows behavior                    *
* An arrow is inserted next to the menu item when the menu item has sub-menus *
******************************************************************************/

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus
 */
.menu .arrow {
	/* background-image:url(img/grey_arrow.gif);
	background-repeat: no-repeat;
	background-position: 9px center;  */
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */
.menu .hover ul .arrow,
.menu ul .arrow {
	background-image:url(img/arrow_sub.png);
	background-position:right;
	margin-right:8px;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.menu .hover .arrow {
	/* background-image:url(img/white_arrow_vertical.gif); */
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus located in the second (or more) level on mouse over
 */
.menu ul .hover .arrow {
	 background-image:url(img/arrow_sub.png); 
	 background-position:right;
	 margin-right:8px;
	
}
/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.horizontal {
	clear: both;
	
}
div.horizontal br {
	clear: both;
	
}
div.horizontal ul {
	margin: 0px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
	
}
div.horizontal li {
	list-style-type: none;
	display: block;
	float: left;
	clear: none;
	text-align: left;
    position: static;
}
div.horizontal li img {
	border: none;
}
div.horizontal a {
	clear: both;
	display: block;
	margin: 0px; 
}
div.horizontal ul li ul {
	position: absolute;
	left: -5000px;
	top: -5000px;
	visibility: hidden;
	clear: both; 
}
div.horizontal ul li ul li {
	clear: both; 
}
div.horizontal ul li ul li a {
	clear: both;
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}</pre></body></html>