@charset "utf-8";

/* -- The Fixed Positioned Navigator -- */

#fixed_nav {
	position:fixed !important;
	_position:absolute;
	top:300px;
	_top:expression(documentElement.scrollTop + 300);
	left:0;
	width:24px;
	border:1px solid #444;
	border-left:none;
	background:#333;
	-moz-box-shadow:0 0 5px #000;
	-webkit-box-shadow:0 0 5px #000;
	-khtml-box-shadow:0 0 5px #000;
	box-shadow:0 0 5px #000;
}

	#fixed_nav .buttons a {
		display:block;
		width:24px;
		height:24px;
		background-color:#333;
		background-image:url(../images/arrows.gif);
		background-repeat:no-repeat;
	}

	#fixed_nav .buttons a:hover {
		background-color:#000;
	}
	
	#fixed_nav .buttons a.gotop {
		background-position:0 0;
	}

	#fixed_nav .buttons a.gotop:hover {
		background-position:-24px 0;
	}

	#fixed_nav .buttons a.gobottom {
		background-position:0 -24px;
	}

	#fixed_nav .buttons a.gobottom:hover {
		background-position:-24px -24px;
	}