/* COMIC NAVIGATION 
Author: Ryan Tackett
Style: Double Clicked Comics
*/

#comic_navi_wrapper {
	display: table;
	border-collapse: collapse;
	text-align: center;
	margin: 0px auto;
}

.navi-comictitle {
	text-align: center;
	padding-top: 26px;
	max-width: 100px;
}

.navi {
	width: 50px;
	padding: 50px 0 0 0;
	display: inline-block;
	overflow: hidden;
	font-size: 11px;
	text-align: center;
	color: #555;
	float: left;
}

.navi-first {
	background: url('first.jpg') no-repeat;
}


.navi-prev, .navi-previous {
	margin-right: 10px;
	background: url('back.jpg') no-repeat;
}


.navi-random {
	background: url('random.jpg') no-repeat;
}

.navi-next {
	margin-left: 10px;
	background: url('forward.jpg') no-repeat;
}


.navi-last {
	background: url('last.jpg') no-repeat;
}

.navi:hover {
		background-position: -50px 0;
	}

.navi-void, .navi-void:hover {
	color: #999;
	background-position: -100px 0;
}


