/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
	width: 100%;
	overflow: hidden;
	text-align: center;
	clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
	display: inline-block;
	min-width: 16px;
	height: 30px;
	margin: 0 2px;
	padding: 0 2px;
	vertical-align: top;
	line-height: 30px;
	font-family: 'Droid Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	color: #a7b2b8;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	color: #313233;
}

span.pages {
	display: none;
}

a.nextpostslink {
	background: #313233 url(images/arrow-right.gif) no-repeat 50% 50%;
	position: relative;
	width: 30px;
	height: 30px;
	overflow: hidden;
	margin: 0 19px 0 19px;
	padding: 0;
	line-height: 0;
	font-size: 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

	a.nextpostslink:hover {
		background-color: #32a8d7;
	}
	
a.previouspostslink {
	background: #313233 url(images/arrow-left.gif) no-repeat 50% 50%;
	position: relative;
	width: 30px;
	height: 30px;
	overflow: hidden;
	margin: 0 19px 0 19px;
	padding: 0;
	line-height: 0;
	font-size: 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

	a.previouspostslink:hover {
		background-color: #32a8d7;
	}