<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Based partially on Matthew Carroll's keyboard accessible flavor of Suckerfish
 * Dropdowns by Patrick Griffiths and Dan Webb. 
 * http://carroll.org.uk/sandbox/suckerfish/bones2.html
 */

/* ----[ LINKS ]----*/

/* all menu links */
#nav a, #subMenusContainer a {
	text-decoration:none;
	display:block;
}
/* Just main menu links --[for non-javascript users this applies to submenu links as well]*/
#nav a {
	margin:0 0 0 0;
	float:left;
	padding: 14px 16px 8px 16px;
	text-transform:uppercase;
	color: #737370;
	font-size: 12px;
}

/* Just sub menu links */
#subMenusContainer a, #nav li li a {
   	font-size: 12px;
	text-align:left;
   	padding:8px 26px;
    color: #fff;
    text-shadow: none;
    background: #1F1F1F
}
/* All menu links on hover or focus */
#nav li a:hover,
#nav li a:focus, 
#nav a.mainMenuParentBtnFocused{
  /*  background: url(../images/nav-hover.png) left center repeat-x;*/
	color: rgb(20, 124, 230);
    border-radius: 10px;
}
#nav li a.active{
  /*  background: url(../images/nav-hover.png) left center repeat-x;*/
	color: rgb(20, 124, 230);
    border-radius: 10px;
}
/* sub menu links on hover or focus */
#subMenusContainer a:hover, 
#subMenusContainer a:focus, 
#subMenusContainer a.subMenuParentBtnFocused {
	background-color: #2788C5;
	color: rgb(20, 124, 230);
    text-shadow: none;
}
/* Parent Sub Menu Links ---[javascript users only]*/
.subMenuParentBtn {
	background: url(../img/arrow_right.gif) right center no-repeat;
}
/* Parent Sub Menu Links on hover or focus ---[javascript users only]*/
.subMenuParentBtnFocused {
	background: url(../img/arrow_right_over.gif) right center no-repeat;
}
/* Parent Main Menu Links ---[javascript users only]*/
.mainMenuParentBtn {
	/*background: url(../img/arrow_down.gif) right center no-repeat;*/
}
/* Parent Main Menu Links on hover or focus ---[javascript users only]*/
.mainMenuParentBtnFocused {
	/*background: url(../img/arrow_down_over.gif) right center no-repeat;*/
}
/* ----[ OLs ULs, LIs, and DIVs ]----*/

/* Submenu Outer Wrapper - each submenu is inside a div with this class - javascript users only */
.smOW {
	display:none;
	position: absolute;
	overflow:hidden;
	/*the 2px left &amp; right padding lets you have a 1px border 
	  on the ul or ol inside since overflow is set to hidden*/
	padding:0 2px;
	margin:0 0 0 -2px;
}
/* All ULs and OLs */
#nav, #nav ul, #nav ol, #subMenusContainer ul, #subMenusContainer ol {
	padding: 0;
	margin: 0;
	list-style: none;
	/*line-height: 1em;*/
}
/* All submenu OLs and ULs */
#nav ol, #nav ul, #subMenusContainer ul, #subMenusContainer ol {
	/*border around submenu goes here*/	 
	background: none;
	left:0;
}
/* List items in main menu --[for non-javascript users this applies to submenus as well]   Ð²ÐµÑ€Ñ…Ð½ÐµÐµ Ð¼ÐµÐ½ÑŽ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð°Ñ*/
#nav li {
	/*great place to use a background image as a divider*/
	cursor: pointer;
	float: left;
	margin: 0 20px 0 0;
	padding: 0 0px 0 0;
	height: 46px;
	display: inline;
}
#nav li:first-child {
	}



#subMenusContainer li {
	list-style: none;

}
/* main menu ul or ol elment */
#nav {
	width: 580px;
	margin: 0 0 0 auto;
	clear: both;
	overflow: hidden;
	font-size: 12px;
	display: block;
}
#nav .children{
	display: none;
}
#subMenusContainer {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:0;
	overflow:visible;
	z-index:1000000000;
}</pre></body></html>