/* Cette classe définit les styles pour la pagination des posts lorsqu'il y a beaucoup de posts
affichés dans une section. A ne pas confondtre avec la pagination d'une seule page*/

.wp-pagenavi a,.wp-pagenavi a:link,.wp-pagenavi a:visited {
	border-radius : 5px; 
	-moz-border-radius : 5px; 
	-webkit-border-radius : 5px;
	background: #fffff0;
	color : #FFF;
	border : 1px solid #FFF;
	text-decoration:none;
	margin:5px;
	padding:4px 8px;

}

.wp-pagenavi a:hover {
	border-radius : 5px; 
	-moz-border-radius : 5px; 
	-webkit-border-radius : 5px;
	background: #b96510 url(../images/fond_selec.jpg) 0 bottom repeat-x;
	color : #FFF;
	border : 1px solid #FF9933;
}

.wp-pagenavi a:active {
	border-radius : 5px; 
	-moz-border-radius : 5px; 
	-webkit-border-radius : 5px;
	background: #fffff0;
	border : 1px solid #FF9933;
	text-decoration:none;
	margin:5px;
	padding:4px 8px;
}

.wp-pagenavi span.pages {
	border-radius : 5px; 
	-moz-border-radius : 5px; 
	-webkit-border-radius : 5px;
	background: #b96510 url(../images/fond_selec.jpg) 0 bottom repeat-x;
	color : #FFF;
	border : 1px solid #FF9933;
	margin:5px 5px 5px 0;
	padding:4px 8px;
}

.wp-pagenavi span.current {
	border-radius : 5px; 
	-moz-border-radius : 5px; 
	-webkit-border-radius : 5px;
	background: #b96510 url(../images/fond_selec.jpg) 0 bottom repeat-x;
	color :#FFF;
	border : 1px solid #FF9933;
	margin:5px;
	padding:4px 8px;
	font-weight:700;
}

.wp-pagenavi span.previouspage {
	float : left;
}

.wp-pagenavi span.nextpage {
	float : right;
}

