@charset "utf-8";
/* CSS Document */

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.site-menu,
.site-menu ul
{
	list-style-type:none;
	padding:0;
	margin:0;
	font-family:arial, sans-serif;
}

/* Set up the top level list items and float left to place inline */
.site-menu li.top
{
	display:block;
	float:left;
	position:relative;
}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.site-menu table
{
	border-collapse:collapse;
	width:0;
	height:0;
	position:absolute;
	top:0;
	left:0;
}

/* Default top link link styling */
.site-menu li.top a.top_link
{
	display:block;
	float:left;
	height:40px;
}

.site-menu li.top a span
{
	position:absolute;
	left:-9999px;
	top:0;
	z-index:0;
	font-size:10px;
} /* move the link text off screen */

/* pre-load the hover images into the lists */
.site-menu li.li-profile,
.site-menu li a#a-profile,
.site-menu li a#a-profile-active
{
	width: 87px;
	background: url(images/icon-en-profile.gif) no-repeat;
}

.site-menu li.li-products,
.site-menu li a#a-products,
.site-menu li a#a-products-active
{
	width: 91px;
	background: url(images/icon-en-products.gif) no-repeat;
}

.site-menu li.li-music-school,
.site-menu li a#a-music-school,
.site-menu li a#a-music-school-active
{
	width: 116px;
	background: url(images/icon-en-music-school.gif) no-repeat;
}

.site-menu li.li-news,
.site-menu li a#a-news,
.site-menu li a#a-news-active
{
	width: 75px;
	background: url(images/icon-en-news.gif) no-repeat;
}

.site-menu li.li-contact-us,
.site-menu li a#a-contact-us,
.site-menu li a#a-contact-us-active
{
	width: 105px;
	background: url(images/icon-en-contact-us.gif) no-repeat;
}

/* set up the normal unhovered images in the links */
.site-menu li a#a-profile,
.site-menu li a#a-products,
.site-menu li a#a-music-school,
.site-menu li a#a-news,
.site-menu li a#a-contact-us
{
	background-position: 0 0;
}

/* Style the list OR link hover. Depends on which browser is used */
.site-menu a:hover
{
	visibility:visible;
} /* for IE6 */
.site-menu li:hover
{
	position:relative;
	z-index:200;
} /* for IE7 */

/* make the links transparent on hover so that the hover images in the lists show through (no flicker) */
.site-menu li a#a-profile:hover, .site-menu li:hover a#a-profile,
.site-menu li a#a-products:hover, .site-menu li:hover a#a-products,
.site-menu li a#a-music-school:hover, .site-menu li:hover a#a-music-school,
.site-menu li a#a-news:hover, .site-menu li:hover a#a-news,
.site-menu li a#a-contact-us:hover, .site-menu li:hover a#a-contact-us
{
	background-position: 0 -40px;
}

.site-menu li a#a-profile-active,
.site-menu li a#a-products-active,
.site-menu li a#a-music-school-active,
.site-menu li a#a-news-active,
.site-menu li a#a-contact-us-active
{
	background-position: 0 -80px;
}

/* keep the 'next' level invisible by placing it off screen. */
.site-menu ul, 
.site-menu :hover ul ul, 
.site-menu :hover ul :hover ul ul,
.site-menu :hover ul :hover ul :hover ul ul,
.site-menu :hover ul :hover ul :hover ul :hover ul ul
{
	position:absolute;
	left:-9999px;
	top:-9999px;
	width:0;
	height:0;
}

/* set up the first drop down sub level */
.site-menu :hover ul.sub
{
	left:0;
	top:40px;
	background: #36c;
	padding:3px 0;
	border:1px solid #888;
	white-space:nowrap;
	width: 160px;
	height:auto;
}
.site-menu :hover ul.sub li
{
	display:block;
	height:20px;
	position:relative;
	float:left;
	width: 160px;
}
.site-menu :hover ul.sub li a
{
	display:block;
	font-size:11px;
	height:20px;
	width:160px;
	line-height:20px;
	text-indent:5px;
	color:#ddd;
	text-decoration:none;
}
.site-menu :hover ul.sub li.mid ul li
{
	display:block;
	height:20px;
	position:relative;
	float:left;
	width: 160px;
}
.site-menu :hover ul.sub li a.fly
{
	background:#36c url(images/arrow.gif) 150px 7px no-repeat;
}
.site-menu :hover ul.sub li a:hover
{
	background:#669;
	color:#fff;
}
.site-menu :hover ul.sub li a.fly:hover
{
	background:#669 url(images/arrow_over.gif) 150px 7px no-repeat;
	color:#fff;
}
.site-menu :hover ul li:hover > a.fly
{
	background:#36c url(images/arrow_over.gif) 150px 7px no-repeat;
	color:#fff;
}

/* set up the flyout levels when hovering */
.site-menu :hover ul :hover ul,
.site-menu :hover ul :hover ul :hover ul,
.site-menu :hover ul :hover ul :hover ul :hover ul,
.site-menu :hover ul :hover ul :hover ul :hover ul :hover ul
{
	left: 160px;
	top:-4px;
	background: #36c;
	padding:3px 0;
	border:1px solid #888;
	white-space:nowrap;
	width:160px;
	z-index:200;
	height:auto;
	z-index:300;
}
