/*
Default style for WP-PageNavi plugin

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

.wp-pagenavi {
	clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
    background: #F8971D;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
	padding: 4px 10px;
	margin: 0 8px 0 0;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	text-decoration: none;
    background-color: #424B53;
}

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