.pagination {
	float: left;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 0% 20%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 20px 0px;
}

.pagination a {
	display: block;
	float: left;
	height: auto;
	width: 13%;
	padding: 0.5em 0.5em 0.6em 0.5em;
	margin: 0% 1%;
	text-align: center;
	text-decoration: none;
	font-family: Times, 'Times New Roman', Georgia, Palatino; /* ATTN: need a better font stack */
	font-weight: bold;
	font-size: 1.5em;
	outline: none;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	border-radius: 10em;
	-moz-border-radius: 10em;
	-webkit-border-radius: 10em;
	-moz-box-shadow: 0px 1px 2px #888;
	-webkit-box-shadow: 0px 1px 2px #888;
	box-shadow: 0px 1px 2px #888;
	border: 1px solid #efefef;
}

.pagination a:hover, .pagination a:focus, .pagination a:active {
	background-color: #03b2f0;
	border: 1px solid #03b2f0;
	color: #ffffff;
}

.pagination a.disabled, .pagination a.disabled:hover, .pagination a.disabled:focus, .pagination a.disabled:active {
}

.pagination input {
	border: none;
	float: left;
	text-align: center;
	height: auto;
	outline: none;
	vertical-align: middle;
	width: 40%;
	padding: 1.2em 1em;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-style: italic;
}

/* gigantic class for demo purposes */

.gigantic.pagination {
	margin: 30px 0;
}

.gigantic.pagination a {
	height: 60px;
	width: 60px;
	font-size: 50px;
	line-height: 50px;
}

.gigantic.pagination input {
	width: 300px;
	height: 60px;
	font-size: 30px;
}

