

/*---FIXED VERTICAL MENU-----------------------------------------------------------------*/




#fixeddiv {
	position: fixed; /*set the position type for non IE systems*/
	top: 144px;
	left: expression(660 + ((document.body.offsetWidth  - 680) /2) + "px");
	width: auto; /*the menu is as wide as it needs to be for the text we put in it*/
	text-align: left; /*optional : align the text to the right hand edge (I think this looks better since the menu is on the right)*/
	margin: 1px; /*optional : I just find a small margin makes things look a bit better*/
}

#fixeddiv a { display: block; } /*Optional : This puts each link in the menu on a new line, remove if you want a horizontal menu*/

* html #fixeddiv {position:absolute;} /*IE only change the position mode of the menu*/

/*----------------------------------------------------------------------*/







/*---FIXED BREADCRUMBS-----------------------------------------------------------------*/

#fixedbread {
	position: fixed; /*set the position type for non IE systems*/
	top: 86px;
	left:expression(18+((document.body.offsetWidth  - 1024) / 2) + "px");
	text-align: left; /*optional : align the text to the right hand edge (I think this looks better since the menu is on the right)*/
	z-index:0;
	width:969px;
	height:23px;
	background-color:#FEFEFE;
	padding-left:20px;
	padding-top:2px;
	margin-top:2px;
	border-bottom:1px #999 solid;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	
}
* html #fixedbread {position:absolute;} /*IE only change the position mode of the menu*/

/*----------------------------------------------------------------------*/







