table * {
	margin: 0px;
	padding: 0px;
}

table.pagerArea {
	width: 100%;
	height: 40px;
	background-color: #f2f2f2;
	border-collapse: collapse;
	border-spacing: 0;
	user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.pagerArea td {
	border: 1px solid #f2f2f2;
	text-align: center;
}

td.fix {
	width: 3.5em;
	color: #666;
}

td.fix:hover {
	font-weight: bold;
	color: #242424;
	text-decoration: underline;
	cursor: pointer;
}

td.active {
	color: #323232;
	font-weight: bold;
}

td.active:hover {
	color: #323232;
	cursor: default;
	text-decoration: none;
}

td.blank {
	width: 1px;
	background-color: #fff;
	border: 1px solid #fff;
}

td.prev {
	width: 48px;
	height: 40px;
	background-image: url("/common3/images/pager_side.png");
	background-repeat: no-repeat;
}

td.prev:hover {
	background-position: 0px -40px;
	cursor: pointer;
}

td.prev_disable {
	width: 48px;
	height: 40px;
	background-image: url("/common3/images/pager_side.png");
	background-repeat: no-repeat;
	background-position: 0px -80px;
	cursor: default;
}

td.next {
	width: 48px;
	height: 40px;
	background-image: url("/common3/images/pager_side.png");
	background-repeat: no-repeat;
	background-position: -48px -0px;
}

td.next:hover {
	background-position: -48px -40px;
	cursor: pointer;
}

td.next_disable {
	width: 48px;
	height: 40px;
	background-image: url("/common3/images/pager_side.png");
	background-repeat: no-repeat;
	background-position: -48px -80px;
	cursor: default;
}

