/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
	clear: both;
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
}

.previouspostslink {}
.pages {display:none;position:absolute;top:-9999px}
.wp-pagenavi span {background:#B70000;color:#ffffff;min-width:30px;height:30px;display:flex;flex-direction: row;flex-wrap: nowrap;align-content: center;justify-content: center;align-items: center;}

.wp-pagenavi a:hover {color:#B70000}
.wp-pagenavi a {
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color:#323232;
	margin:5px;
	min-width:30px;
	height:30px;
	display:flex;
	justify-content: center;
	align-content: center;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #000;
}

.wp-pagenavi span.current {
	font-weight: bold;
}
