/************************************************************************************************
Author  	:	Waikee
Contact		:	https://www.facebook.com/ywkee

File Name	:	AutoNumber
Description	:	Page number Automatic generated with CSS Counter-Increment
				Current page automatic highlighted with jquery.
				You Happy Now?

Note		:	If you happen to view source and grab my code, Let me know how you improve it!	
*************************************************************************************************/
.autonumber {	
	color:#000;
	text-align:right;	
	padding-bottom: 10px;
	counter-reset:fuckthisnumber;
}
.autonumber:before {
	content:'Page  ';
	}
	
.autonumber a {
	color:#000;
	margin:0;
	text-decoration:none;
	border:2px solid #f0f0f0;
	padding:2px 7px;
	border-radius:360px;
}
.autonumber a:before{
	counter-increment:fuckthisnumber;
    content:counter(fuckthisnumber);
    font-weight:bold;
	}

.autonumber a:hover{
	border:2px solid #538604;
	color:#538604;
}

.autonumber a:active, .autonumber .current {
	padding:2px 7px;
	border:2px solid #538604;
	color:#fff;
	font-weight:normal;
	background-color:#91b241;
}
.autonumber .disabled {
	display:none;
}

