
/*** ESSENTIAL STYLES ***/
.menu_topmenu, .menu_topmenu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.menu_topmenu {
	line-height:	1.0;
}
.menu_topmenu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
.menu_topmenu ul li {
	width:			100%;
}
.menu_topmenu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.menu_topmenu li {
	float:			left;
	position:		relative;
}
.menu_topmenu a {
	display:		block;
	position:		relative;
}
.menu_topmenu li:hover ul,
.menu_topmenu li.sfHover ul {
	left:			0;
	top:			3.0em; /* match top ul list item height */
	z-index:		99;
}
ul.menu_topmenu li:hover li ul,
ul.menu_topmenu li.sfHover li ul {
	top:			-999em;
}
ul.menu_topmenu li li:hover ul,
ul.menu_topmenu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
} 
ul.menu_topmenu li li:hover li ul,
ul.menu_topmenu li li.sfHover li ul {
	top:			-999em;
}
ul.menu_topmenu li li li:hover ul,
ul.menu_topmenu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
ul.menu_topmenu {
	margin-bottom:	1em;
	width: 770px;
	height: 53px;
	float: left;
}

ul.menu_topmenu li {
	padding-left: 15px;
	padding-right: 10px;
	height: 53px;
	width: auto;
}

ul.menu_topmenu li:hover {
	background : transparent url('../images/gif/mainlevel-nav-gradient-onhover.gif') repeat-x;
	width: auto;
}

ul.menu_topmenu li a, ul.menu_topmenu li a:visited {
	font-size: 13pt;
	font-family: arial;
	font-weight: bold;
	color: #fff;
	line-height : 50px;
	text-align : center;
	text-decoration : none;
	white-space : nowrap;
}

/** Sub-Menu **/

ul.menu_topmenu ul {
	margin-top: 12px;
	width: auto;
}

ul.menu_topmenu ul li {
	padding: 0;
	padding-right: 10px;
	background-color: #f7f5f4;
	border-bottom: 1px solid #ccc;
	
	display: block;
	width: auto;
	height: 29px;
	float: none;
	white-space: nowrap;
}

ul.menu_topmenu ul li:hover {
	background: url('../images/gif/mainlevel-nav-gradient-onhover.gif') repeat-x;
}

ul.menu_topmenu ul li a, ul.menu_topmenu ul li a:visited {
	background-color: #f7f5f4;
	color: #296f91;
	font-size: 10pt;
	font-weight: normal;
	padding-left: 15px;
	text-align: left;
	height: 29px;
	line-height: 27px;
	white-space: nowrap;
}

ul.menu_topmenu ul li a:hover {
	background: url('../images/gif/mainlevel-nav-gradient-onhover.gif') repeat-x;
	color: #fff;
	height: 29px;
	line-height: 27px;
}

/* -- */

ul.menu_topmenu ul li.active a, ul.menu_topmenu ul li.active a:visited {
	background-color: #f7f5f4;
	color: #296f91;
	font-size: 10pt;
	font-weight: normal;
	padding-left: 15px;
	text-align: left;
	height: 29px;
	line-height: 27px;
	white-space: nowrap;
}

ul.menu_topmenu ul li.active a:hover {
	background: url('../images/gif/mainlevel-nav-gradient-onhover.gif') repeat-x;
	color: #fff;
	width: 100%;
	height: 29px;
	line-height: 27px;
}

.ulmenu_topmenu li:hover, ul.menu_topmenu li.sfhover,
ul.menu_topmenu a:focus, ul.menu_topmenu a:hover, ul.menu_topmenu a:active {
	outline:		0;
}






/*** arrows **/
.menu_topmenu a.sf-with-ul {
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfhover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.menu_topmenu ul .sf-sub-indicator { background-position:  -10px 0; }
.menu_topmenu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.menu_topmenu ul a:focus > .sf-sub-indicator,
.menu_topmenu ul a:hover > .sf-sub-indicator,
.menu_topmenu ul a:active > .sf-sub-indicator,
.menu_topmenu ul li:hover > a > .sf-sub-indicator,
.menu_topmenu ul li.sfhover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

