/* Pagination
################################################################################################################## */
#wp_page_numbers ,#wp_page_numbers ul, #wp_page_numbers li, #wp_page_numbers a {
	font-size: 100%;
}

#wp_page_numbers {
	clear:both;
	display:block;
	background:#FFF;
	width: 100%;
	background: transparent;
	padding:0;
	margin: 20px auto;
	text-align: center;
}

/*#wp_page_numbers:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;   
  visibility: hidden;
}*/



#wp_page_numbers ul {
	text-align: center;
	margin:0;
	padding:0;
}

#wp_page_numbers li {
	display: inline-block;
	margin: 2px;
	padding:0px;
}

#wp_page_numbers a {
	text-decoration: none;
}

.page_head {
	width: 100%;
	font-size: 16pt;
	color: #003d96;
	margin-bottom: 18px;
	clear: both;
}

#wp_page_numbers li a.paginate {
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 16pt;
	line-height: 50px;

	color: #003d96;
	margin-left: 2px;
	margin-right: 2px;
	display: block;
	border: 2px solid #003d96;
	background-color:#FFF;
	
	border-radius: 27px;        /* CSS3草案 */  
	-webkit-border-radius: 27px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 27px;   /* Firefox用 */	
}

#wp_page_numbers li a:hover {
	background-color: #FFC331;
	/*text-decoration: underline;*/
}

#wp_page_numbers li.space {
	padding: 6px;
	padding-left: 2px;
	padding-right: 2px;
}

#wp_page_numbers li.active_page a {
	background-color: #FFC331;
}
#wp_page_numbers li.active_page a:hover  {
	color: black; /* IE fix */
	/*text-decoration: underline;
	border-color: #00468b;*/
}

#wp_page_numbers .page_info {
	display: none;
}
#wp_page_numbers li.dropdown{
	float: right;
	display: block;
	padding: 3px;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 2px;
	color: #666;
	font-size: 11px;
	border: 1px solid #bfbfbf;
}



.arrow-wrap-left {
	float: left;
	position: relative;
	top: -55px;
	left: 10px;
}

.arrow-wrap-right {
	float: right;
	position: relative;
	top: -55px;
	right: 10px;
}

.arrow-right,
.arrow-left {
	position: relative;
	color:#fff !important;
	display: inline-block;
	width: 60px;
	height: 50px;
	line-height: 50px;
	text-align: center;
}

.arrow-right:after,
.arrow-left:after {
	position: absolute;
	top: 0;
	content: '';
	display: inline-block;
	border: solid 25px transparent;
}

.arrow-right:after{
	right: -35px;
	border-left: solid 10px;
}

.arrow-left:after{
	left: -35px;
	border-right: solid 10px;
}

a.arrow-right:hover,
a.arrow-left:hover {
	background-color: #003d96 !important;
}

a.arrow-left:hover {
	transition: all .2s;
	right: .5em;
}

a.arrow-right:hover {
	transition: all .2s;
	left: .5em;
}

.arrow--blue{background-color: #003d96;}
.arrow-left:after{border-right-color: #003d96;}
.arrow-right:after{border-left-color: #003d96;}


@media screen and (max-width: 600px) {
	.arrow-wrap-left,
	.arrow-wrap-right {
		top: -45px;
	}
	
	.arrow-right,
	.arrow-left {
		width: 50px;
		height: 50px;
	 	line-height: 50px;
	}
	
	#wp_page_numbers li a.paginate {
		width: 32px;
		height: 32px;
		font-size: 12pt;
		line-height: 32px;
		border-radius: 16px;        /* CSS3草案 */  
		-webkit-border-radius: 18px;    /* Safari,Google Chrome用 */  
		-moz-border-radius: 18px;   /* Firefox用 */	
	}
}

@media screen and (max-width: 380px) {
	#wp_page_numbers {
		height: 160px;	
	}
	
	#wp_page_numbers .page_info {
		display: inherit;
	}
	
	.arrow-wrap-left,
	.arrow-wrap-right {
		top: 18px;
	}
	
	.arrow-wrap-left {
		left: 30%;
	}
	
	.arrow-wrap-right {
		right: 30%;
	}
	
	.arrow-left--invalid {background-color: #c8c9ca;}
	.arrow-left--invalid:after{border-right-color: #c8c9ca;}
	.arrow-right--invalid {background-color: #c8c9ca;}
	.arrow-right--invalid:after{border-left-color: #c8c9ca;}
}