/* CSS Document */

#menu {
	list-style: none;
	color: #fff;
	padding: 0;
	margin: 0;
	height: 25px;
	text-transform: uppercase;
	float: right;
	}
	
#menu li {
	float: left;
	position: relative;
	height: 25px;
	background: url(menu_li.gif) no-repeat right bottom;
	padding: 0px;
	margin: 0;
	}
	
#menu a {
	display: block;
	font-size: 11px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	line-height: 25px;
	height: 25px;
	float: left;
	position: relative;
	margin: 0 0 0 -2px;
	padding: 0;
	border: none;
	}

#menu a:hover,
#menu .has_sub_over a {
	color: #666;
	background: url(menu_a.gif) no-repeat;
	}
		
#menu a strong {
	display: block;
	font-weight: normal;
	line-height: 25px;
	cursor: pointer;
	padding: 0 15px;
	}
	
#menu a:hover strong,
#menu .has_sub_over a strong {
	background: url(menu_a_strong.gif) no-repeat right;	
	}
	
	
* html #menu strong {
	height: 25px;
	float: left;
	}
	
#menu ul {
	display: none;
	}

#menu .has_sub_over ul{
	display: block;
}

#menu ul{
	position: absolute;
	width: 200px;
	background: #fff;
	margin: 0;
	padding: 0 0 0 1px;
	top: 25px;
	left: -2px;
	border: solid 1px #e2e2e2;
	border-top: none;
	min-height: 1px;
}

#menu ul li{
	display: block;
	float: none;
	background: none;
	margin: 0 0 0 1px;
}

#menu .has_sub_over ul a{
	float: none;
	clear: both;
	display: block;
	text-align: left;
	padding: 0 0 0 15px;
	background: #fff;
}

#menu .has_sub_over ul a:hover{
	background: #e6e6e6;
}

#menu .has_sub_over ul ul{
	display: none;
}