/**
 * Pagination Stylesheet
 */

/**
 * div that displays x of y for search results
 */
.pagination {
	margin:  3px 0px 3px 0px;
	font-size: 1em;
}

/**
 * table that holds page walker
 */

.page_walker {
	border-collapse: separate;
	margin: 24px auto 0px;
	font: normal normal 11px/normal Arial, Helvetica, sans-serif;
	text-align: center;
	line-height: 24px;
}

	/**
	 * links to each page
	 */
	.page_walker a {
		color: #333;
		border: 1px solid #CCC;
		padding: 3px 6px;
		margin: 0 1px 0 0;
		text-decoration: none;
		width: 50px;
		font-weight: normal;
	}
	
	/** 
	 * over state for page links
	 */
	.page_walker a:Hover {
		text-decoration: none;
		color: #333;
		border: 1px solid #AAA;
		background-color: #DDD;
	}
	
	/**
	 * page that is currently selected
	 */
	.page_walker .pw_highlight {
		padding: 3px 6px;
		margin: 0 1px 0 0;
		color: #FFF;
		background-color: #C53300;
		font-weight: normal;
		border: 1px solid #C53300;
	}
	
	/**
	 * previous and next boxes
	 */
	.page_walker .pw_previous, .page_walker .pw_next {
		margin: 0 7px;
		font-weight: bold;
	}
	
	/**
	 * disabled previous and next boxes
	 */
	.page_walker .pw_disabled {
		color: #999;
		font-weight: normal;
		margin: 0 7px;
		padding: 3px 6px;
		border: 1px solid #DDD;
	}