.FlyoutMenu ul {
	list-style-type:none;
	text-align:center;
	margin: 0px;
	left:0px;
}

.FlyoutMenu ul li {
	background-image:url(image/koc_button.gif);
	background-repeat:no-repeat;
	text-align:left;
	padding: 30px 15px 30px 10px;
}

.FlyoutMenu ul li a
{
    position:relative;
    left: 25px;
	bottom: 6px;
	color:#FFFFFF;
	font-family:"Arial Black", Helvetica, sans-serif;
	font-style:italic;
	font-size: 12px;
	text-decoration:none;
}
.FlyoutMenu ul li a:hover
{
    color: #9DC4FF;
}

.FlyoutMenu ul, .FlyoutMenu ul ul {
	margin: 0;
	padding: 0;
	width: 148px;
	list-style: none;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.FlyoutMenu ul ul {
	display: none;
	position: absolute;
	top:20px;
	left:135px;
	margin:0px;
	padding:0px;
}
.FlyoutMenu ul ul ul{
	top: -3px;
	left: 148px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.FlyoutMenu ul li {
	position: relative;
	margin-bottom: -1px;
}
.FlyoutMenu ul ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

.FlyoutMenu ul ul li {
	background-image:none;
	background-color:#0000FF;
	border: solid 2px #CECE70;
	width:140px;
	margin:1px 0px 3px 0px;
	padding:2px;
}
/* Links inside the menu */
.FlyoutMenu ul ul a {
	position:inherit;
	bottom:0px;
	left:0px;
	top:0px;
	display: block;
	width:131px;
	margin:0px;
	text-decoration:none;
	text-align:left;
}
/*
 List items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.FlyoutMenu ul a:hover, .FlyoutMenu ul a.highlighted:hover, .FlyoutMenu ul a:focus {
 color: #9DC4FF;
}
.FlyoutMenu ul a.highlighted {
	color: #9DC4FF;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.FlyoutMenu ul a .subind {
	display:none;
}
.FlyoutMenu ul ul a .subind {
	text-decoration:none;
	display:block;
	float:right;
}