/* jquery.ins */
.insWrap,
.insWrap_small {
	-webkit-user-select: none;
	/*-moz-user-select: none;*/
	-ms-user-select: none;
	user-select: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
	padding: 0 45px;
}
.insWrap_small {
	padding: 0 30px;
}
.ins,
.ins_t {
	width: 40px;
	height: 40px;
	text-align: center;
	display: block;
	box-sizing: border-box;
	border: none;
	border-top: 2px solid #e2e2e2;
	border-bottom: 2px solid #e2e2e2;
	margin: 0;
	padding: 5px 5px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.insWrap_small .ins,
.insWrap_small .ins_t {
	width: 40px;
	height: 30px;
}
.ins_t {
	width: 80px;
	border: 1px solid #f00;
}
.ins:focus,
.ins_t:focus {}
.ins-btnU,
.ins-btnD {
	background: none;
	width: 45px;
	height: 40px;
	display: block;
	border: 2px solid #e2e2e2;
	box-sizing: border-box;
	position: absolute;
	cursor: pointer;
}
.insWrap_small .ins-btnU,
.insWrap_small .ins-btnD {
	width: 35px;
	height: 30px;
}
.ins-btnU:hover,
.ins-btnD:hover {
	border-color: #3384de;
}
.ins-btnU.disabled,
.ins-btnD.disabled {
	background: #eee;
	border-color: #ddd;
}
.ins-btnU {
	top: 0;
	right: 0;
}
.ins-btnD {
	top: 0;
	left: 0;
}
.ins-btnU:after,
.ins-btnD:after {
	content: '';
	background: #3384de;
	width: 14px;
	height: 2px;
	font-size: 0;
	line-height: 0;
	margin: -1px 0 0 -7px;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
}
.ins-btnU:before {
	content: '';
	background: #3384de;
	width: 2px;
	height: 14px;
	font-size: 0;
	line-height: 0;
	margin: -7px 0 0 -1px;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
}
/* jquery.ins */