.jq-checkbox{
	top: -1px;

	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;

	cursor: pointer;
	vertical-align: middle;

	border: 1px solid #c3c3c3;
	border-radius: 3px;
	background: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	background: -o-linear-gradient(#fff, #e6e6e6);
	background:    linear-gradient(#fff, #e6e6e6);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #fff, inset 1px -1px #fff;
	        box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #fff, inset 1px -1px #fff;
}
.jq-checkbox.checked .jq-checkbox__div{
	width: 12px;
	height: 12px;
	margin: 2px 0 0 2px;

	border-radius: 2px;
	background: #666;
	-webkit-box-shadow: inset 0 -3px 6px #aaa;
	        box-shadow: inset 0 -3px 6px #aaa;
}
.jq-checkbox.focused{
	border: 1px solid #08c;
}
.jq-checkbox.disabled{
	opacity: .55;
}


.jq-radio{
	top: -1px;

	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;

	cursor: pointer;
	vertical-align: middle;

	border: 1px solid #c3c3c3;
	border-radius: 50%;
	background: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	background: -o-linear-gradient(#fff, #e6e6e6);
	background:    linear-gradient(#fff, #e6e6e6);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #fff, inset 1px -1px #fff;
	        box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #fff, inset 1px -1px #fff;
}
.jq-radio.checked .jq-radio__div{
	width: 10px;
	height: 10px;
	margin: 3px 0 0 3px;

	border-radius: 50%;
	background: #777;
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,.7);
	        box-shadow: inset 1px 1px 1px rgba(0,0,0,.7);
}
.jq-radio.focused{
	border: 1px solid #08c;
}
.jq-radio.disabled{
	opacity: .55;
}


.jq-file{
	width: 270px;

	border-radius: 4px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.jq-file input{
	line-height: 1em;

	height: auto;

	cursor: pointer;
}
.jq-file__name{
	font: 14px/32px Arial, sans-serif;

	overflow: hidden;

	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 80px 0 10px;

	white-space: nowrap;
	   text-overflow: ellipsis;

	color: #333;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: #fff;
	-webkit-box-shadow: inset 1px 1px #f1f1f1;
	        box-shadow: inset 1px 1px #f1f1f1;

	-o-text-overflow: ellipsis;
}
.jq-file__browse{
	font: 14px/32px Arial, sans-serif;

	position: absolute;
	top: 1px;
	right: 1px;

	padding: 0 10px;

	color: #333;
	border-left: 1px solid #ccc;
	border-radius: 0 4px 4px 0;
	background: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	background: -o-linear-gradient(#fff, #e6e6e6);
	background:    linear-gradient(#fff, #e6e6e6);
	-webkit-box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	text-shadow: 1px 1px #fff;
}
.jq-file:hover .jq-file__browse{
	background: #e6e6e6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e6e6e6));
	background: -o-linear-gradient(#f6f6f6, #e6e6e6);
	background:    linear-gradient(#f6f6f6, #e6e6e6);
}
.jq-file:active .jq-file__browse{
	background: #f5f5f5;
	-webkit-box-shadow: inset 1px 1px 3px #ddd;
	        box-shadow: inset 1px 1px 3px #ddd;
}
.jq-file.focused .jq-file__name{
	border: 1px solid #5794bf;
}
.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse{
	color: #888;
	border-color: #ccc;
	background: #f5f5f5;
	-webkit-box-shadow: none;
	        box-shadow: none;
}


.jq-number{
	position: relative;

	display: inline-block;

	padding: 0 36px 0 0;

	vertical-align: middle;
}
.jq-number__field{
	width: 100px;

	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	-webkit-box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
}
.jq-number__field:hover{
	border-color: #b3b3b3;
}
.jq-number__field input{
	font: 14px Arial, sans-serif;

	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	padding: 8px 9px;

	text-align: left; /* для Opera Presto */

	color: #333;
	border: none;
	outline: none;
	background: none;

	-moz-appearance: textfield;
}
.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button{
	margin: 0; /* в каких-то браузерах присутствует отступ */

	-webkit-appearance: none;
}
.jq-number__spin{
	position: absolute;
	top: 0;
	right: 0;

	width: 32px;
	height: 14px;

	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;

	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	background: -o-linear-gradient(#fff, #e6e6e6);
	background:    linear-gradient(#fff, #e6e6e6);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
	-webkit-box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	text-shadow: 1px 1px #fff;
}
.jq-number__spin.minus{
	top: auto;
	bottom: 0;
}
.jq-number__spin:hover{
	background: #e6e6e6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e6e6e6));
	background: -o-linear-gradient(#f6f6f6, #e6e6e6);
	background:    linear-gradient(#f6f6f6, #e6e6e6);
}
.jq-number__spin:active{
	background: #f5f5f5;
	-webkit-box-shadow: inset 1px 1px 3px #ddd;
	        box-shadow: inset 1px 1px 3px #ddd;
}
.jq-number__spin:after{
	position: absolute;
	top: 4px;
	left: 11px;

	width: 0;
	height: 0;

	content: '';

	border-right: 5px solid transparent;
	border-bottom: 5px solid #999;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:after{
	top: 5px;

	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-bottom: none;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:hover:after{
	border-top-color: #000;
}
.jq-number__spin.plus:hover:after{
	border-bottom-color: #000;
}
.jq-number.focused .jq-number__field{
	border: 1px solid #5794bf;
}
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin{
	color: #888;
	border-color: #ccc;
	background: #f5f5f5;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.jq-number.disabled .jq-number__spin:after{
	border-bottom-color: #aaa;
}
.jq-number.disabled .jq-number__spin.minus:after{
	border-top-color: #aaa;
}


.jq-selectbox{
	cursor: pointer;
	vertical-align: middle;
}
.jq-selectbox__select{
	font: 14px/32px Arial, sans-serif;

	height: 32px;
	padding: 0 45px 0 10px;

	color: #333;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	background: -o-linear-gradient(#fff, #e6e6e6);
	background:    linear-gradient(#fff, #e6e6e6);
	-webkit-box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	text-shadow: 1px 1px #fff;
}
.jq-selectbox__select:hover{
	background: #e6e6e6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e6e6e6));
	background: -o-linear-gradient(#f6f6f6, #e6e6e6);
	background:    linear-gradient(#f6f6f6, #e6e6e6);
}
.jq-selectbox__select:active{
	background: #f5f5f5;
	-webkit-box-shadow: inset 1px 1px 3px #ddd;
	        box-shadow: inset 1px 1px 3px #ddd;
}
.jq-selectbox.focused .jq-selectbox__select{
	border: 1px solid #5794bf;
}
.jq-selectbox.disabled .jq-selectbox__select{
	color: #888;
	border-color: #ccc;
	background: #f5f5f5;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.jq-selectbox__select-text{
	display: block;
	overflow: hidden;

	width: 100%;

	white-space: nowrap;
	   text-overflow: ellipsis;

	-o-text-overflow: ellipsis;
}
.jq-selectbox .placeholder{
	color: #888;
}
.jq-selectbox__trigger{
	position: absolute;
	top: 0;
	right: 0;

	width: 34px;
	height: 100%;

	border-left: 1px solid #ccc;
}
.jq-selectbox__trigger-arrow{
	position: absolute;
	top: 14px;
	right: 12px;

	width: 0;
	height: 0;

	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow{
	border-top-color: #000;
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow{
	border-top-color: #aaa;
}
.jq-selectbox__dropdown{
	font: 14px/18px Arial, sans-serif;

	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;

	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2);
	        box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.jq-selectbox__search{
	margin: 5px;
}
.jq-selectbox__search input{
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;

	color: #333;
	border: 1px solid #ccc;
	border-radius: 3px;
	outline: none;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
	-webkit-box-shadow: inset 1px 1px #f1f1f1;
	        box-shadow: inset 1px 1px #f1f1f1;

	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration{
	-webkit-appearance: none;
}
.jq-selectbox__not-found{
	font-size: 13px;

	margin: 5px;
	padding: 5px 8px 6px;

	background: #f0f0f0;
}
.jq-selectbox ul{
	margin: 0;
	padding: 0;
}
.jq-selectbox li{
	min-height: 18px;
	padding: 5px 10px 6px;

	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;

	color: #231f20;
}
.jq-selectbox li.selected{
	color: #fff;
	background-color: #a3abb1;
}
.jq-selectbox li:hover{
	color: #fff;
	background-color: #08c;
}
.jq-selectbox li.disabled{
	color: #aaa;
}
.jq-selectbox li.disabled:hover{
	background: none;
}
.jq-selectbox li.optgroup{
	font-weight: bold;
}
.jq-selectbox li.optgroup:hover{
	cursor: default;

	color: #231f20;
	background: none;
}
.jq-selectbox li.option{
	padding-left: 25px;
}


.jq-select-multiple{
	font: 14px/18px Arial, sans-serif;

	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 1px;

	cursor: default;

	color: #333;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: #fff;
	-webkit-box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
}
.jq-select-multiple.focused{
	border: 1px solid #5794bf;
}
.jq-select-multiple.disabled{
	color: #888;
	border-color: #ccc;
	background: #f5f5f5;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.jq-select-multiple ul{
	margin: 0;
	padding: 0;
}
.jq-select-multiple li{
	padding: 3px 9px 4px;

	list-style: none;

	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
}
.jq-select-multiple li:first-child{
	border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child{
	border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected{
	color: #fff;
	background: #08c;
}
.jq-select-multiple li.disabled{
	color: #aaa;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled{
	color: #fff;
	background: #ccc;
}
.jq-select-multiple li.optgroup{
	font-weight: bold;
}
.jq-select-multiple li.option{
	padding-left: 25px;
}


input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler{
	font: 14px Arial, sans-serif;

	padding: 8px 9px;

	color: #333;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	-webkit-box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
}
input[type='search'].styler{
	-webkit-appearance: none;
}
textarea.styler{
	overflow: auto;
}
input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover{
	border-color: #b3b3b3;
}
input[type='email'].styler:focus,
input[type='password'].styler:focus,
input[type='search'].styler:focus,
input[type='tel'].styler:focus,
input[type='text'].styler:focus,
input[type='url'].styler:focus,
textarea.styler:focus{
	border-color: #ccc;
	border-top-color: #b3b3b3;
	outline: none;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler{
	font: 14px Arial, sans-serif;

	overflow: visible;

	padding: 8px 11px;

	cursor: pointer;

	color: #333;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	outline: none;
	background: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	background: -o-linear-gradient(#fff, #e6e6e6);
	background:    linear-gradient(#fff, #e6e6e6);
	-webkit-box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	        box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0,0,0,.1);
	text-shadow: 1px 1px #fff;
}
button.styler::-moz-focus-inner,
input[type='button'].styler::-moz-focus-inner,
input[type='submit'].styler::-moz-focus-inner,
input[type='reset'].styler::-moz-focus-inner{
	padding: 0;

	border: 0;
}
button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:hover{
	background: #e6e6e6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e6e6e6));
	background: -o-linear-gradient(#f6f6f6, #e6e6e6);
	background:    linear-gradient(#f6f6f6, #e6e6e6);
}
button.styler:not([disabled]):active,
input[type='button'].styler:not([disabled]):active,
input[type='submit'].styler:not([disabled]):active,
input[type='reset'].styler:active{
	background: #f5f5f5;
	-webkit-box-shadow: inset 1px 1px 3px #ddd;
	        box-shadow: inset 1px 1px 3px #ddd;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled]{
	color: #888;
	border-color: #ccc;
	background: #f5f5f5;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
