/************************************************************************************************
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:#48b9ef;
	text-align:right;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	padding-bottom: 10px;
	counter-reset:fuckthisnumber;
	margin-top:-35px;	
	
}
.autonumber:before {
	content:'Page : ';
	}
	
.autonumber a {
	color:#48b9ef;
	margin:0;
	text-decoration:none;
	border:2px solid #f0f0f0;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-radius:360px;
}
.autonumber a:before{
	counter-increment:fuckthisnumber;
    content:counter(fuckthisnumber);
    font-weight:bold;
	}

.autonumber a:hover{
	border:2px solid #ff5a00;
	color:#ff5a00;
}

.autonumber a:active, .autonumber .current {
	padding:2px 5px;
	border:2px solid #ff5a00;
	color:#fff;
	font-weight:bold;
	background-color:#ff6c16;
}
.autonumber .disabled {
	display:none;
}

