/* COMIC NAVIGATION 
Author: Tyler Martin
Style: Haiku Ewe
*/

#comic_navi_wrapper {
	width: 400px;
	height: 60px;
	overflow: hidden;
	margin-left: 63px;
}

.navi {
	width: 150px;
	height: 60px;
	display: block;
	text-indent: -9999px;
	float: left;
}

.navi-prev {

	background: url('navigation.png') no-repeat;
}

	.navi-prev:hover {
		background-position: 0 -60px;
	}

	.navi-prev.navi-void{
		background: #fff;
	}

.navi-next {
	margin-left: 100px;
	background: url('navigation.png') -250px 0 no-repeat;
}

	.navi-next:hover {
		background-position: -250px -60px;
	}

	.navi-next.navi-void{
		background: #fff;
	}

