/* navigation */
.top-header{
	width:100%;
	clear:both;
	
}
.top-header ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/*Top level list items*/
.top-header ul li{
	float: left;
	position:relative;
	margin:0;
	margin-right: 16px;
}
/*Top level menu link items style*/
.top-header ul li a{
	display: block;
	padding: 0;
	line-height:30px;
	color: #000;
	text-transform:uppercase;
	font-size:10px;
}
* html .top-header ul li a{
	display: inline;
}
.top-header ul li.selected,
.top-header ul li:hover{background-color:#bf0029;}
.top-header ul li.selected a,
.top-header ul li:hover a,
.top-header ul li a:hover{
	color:#fff;
	text-decoration:none;
}
/*1st sub level menu*/
.top-header ul ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	background-color:#bf0029;
	border-bottom:none;
	width:200px;/*188px;*/
	margin-top:-1px;
}
.top-header ul li:hover > ul {
display: block;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.top-header ul ul li{
	display: list-item;
	float: none;
	background-image:none;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.top-header ul ul ul{top: 0;}
/* Sub level menu links style */
.top-header ul ul a{
	height:22px;
	line-height:22px;
	padding: 4px 10px;
	margin: 0;
	border-top-width: 0;
	font-size:10px;
	text-align:left;
	color:#FFF;
}
.top-header ul ul li.down{/*background:url(../images/down.gif) no-repeat 98% 85%;*/}
.top-header ul ul li.selected,
.top-header ul ul li:hover{
	background-color:#960423;
}