/* ================================================================ This copyright notice must be untouched at all times.The original version of this stylesheet and the associated (x)htmlis available at http://www.cssplay.co.uk/menus/final_drop.htmlCopyright (c) 2005-2007 Stu Nicholls. All rights reserved.This stylesheet and the assocaited (x)html may be modified in any way to fit your requirements.=================================================================== */#menubar .filler {	height: 30px;	width: 100%;	border: 1px solid #ffffff; 	border-width: 1px 1px 0 0; 	background: #991900; 	display: block;	position: absolute;	top: 0px;	left: 0px;}#menubar {	clear: all;	width: 100%; //850px;	font-size: 9pt;	position: relative;	z-index: 100;}/* remove all the bullets, borders and padding from the default list styling */#menubar ul {	padding: 0;	margin: 0;	list-style-type: none;}#menubar ul ul {	width: 150px;}/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */#menubar li {	float: left;	width: 150px;	position: relative;}/* style the links for the top level */#menubar a,#menubar a:visited {	display: block;	font-size: 9pt;	text-decoration: none; 	color: #ffffff; 	background: #991900; 	width: 139px; 	height: 30px; 	border: 1px solid #ffffff; 	border-width: 1px 1px 0 0; 	padding-left: 10px; 	line-height: 29px;}/* embolden top-level menu titles, but nothing else */#menubar li {	font-weight: bold;}#menubar li li {	font-weight: normal;}/* a hack so that IE5.5 faulty box model is corrected */* html #menubar a,* html #menubar a:visited {	width: 150px;	width: 139px;}/* style the second level background */#menubar ul ul a.drop,#menubar ul ul a.drop:visited {	background: #dcdaba url(/components/menubar/dropdown.gif) bottom right no-repeat;	color: #000000	border: 1px solid #ffffff; 	border-width: 1px 1px 0 0; }/* style the second level hover */#menubar ul ul a.drop:hover {	background: #991900 url(/components/menubar/dropdown.gif) bottom right no-repeat;	color: #ffffff;}#menubar ul ul :hover > a.drop {	background: #991900 url(/components/menubar/dropdown.gif) bottom right no-repeat;	color: #ffffff;}/* style the third level background */#menubar ul ul ul a,#menubar ul ul ul a:visited {	background: #dcdaba;	color: #000000;}/* style the third level hover */#menubar ul ul ul a:hover {	background: #991900;	color: #ffffff;}/* hide the sub levels and give them a positon absolute so that they take up no room */#menubar ul ul {	visibility: hidden;	position: absolute;	height: 0;	top: 31px;	left: 0; 	width: 150px;}/* another hack for IE5.5 */* html #menubar ul ul {	top: 30px;	t\op: 31px;}/* position the third level flyout menu */#menubar ul ul ul {	left: 150px; 	top: 0;	width: 150px;}/* position the third level flyout menu for a left flyout */#menubar ul ul ul.left {	left: -150px;}/* style the table so that it takes no part in the layout - required for IE to work */#menubar table {	position: absolute;	top: 0;	left: 0;}/* style the second level links */#menubar ul ul a,#menubar ul ul a:visited {	background: #dcdaba; 	color: #000000; 	border: 1px solid #ffffff; 	border-width: 1px 1px 0 0; 	height: auto; 	line-height: 1em; 	padding: 5px 10px; 	width: 129px/* yet another hack for IE5.5 */}* html #menubar ul ul a {	width: 150px;	w\idth: 129px;}/* style the top level hover */#menubar a:hover,#menubar ul ul a:hover {	color: #991900; 	background: #ffffff;}#menubar :hover > a,#menubar ul ul :hover > a {	color: #ffffff;	background: #991900;}/* make the second level visible when hover on first level list OR link */#menubar ul li:hover ul,#menubar ul a:hover ul {	visibility: visible; }/* keep the third level hidden when you hover on first level list OR link */#menubar ul :hover ul ul {	visibility: hidden;}/* make the third level visible when you hover over second level list OR link */#menubar ul :hover ul :hover ul { 	visibility: visible;}