

/* scrollbars */
.jcf-scrollable-wrapper {
	box-sizing: content-box;
	position: relative;
	padding-right: 5px;
}
.jcf-scrollbar-vertical {
	position: absolute;
	cursor: default;
	background: #1f1f1f;
	width: 1px;
	bottom: 0;
	right: 0;
	top: 0;
}
.jcf-scrollbar-vertical .jcf-scrollbar-dec,
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	background: #bbb;
	height: 0;
	width: 14px;
	left: 0;
	top: 0;
	visibility: hidden;
}
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	top: auto;
	bottom: 0;
}
.jcf-scrollbar-vertical .jcf-scrollbar-handle {
	background: #1f1f1f;
	height: 15px !important;
	width: 15px !important;
	border-radius: 50%;
	margin-left: -7px;
}
.jcf-scrollbar-horizontal {
	position: absolute;
	background: #e3e3e3;
	right: auto;
	top: auto;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 14px;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	background: #bbb;
	height: 14px;
	width: 14px;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	left: auto;
	right: 0;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-slider {
	display: inline-block;
	position: relative;
	height: 14px;
}
.jcf-scrollbar-horizontal .jcf-scrollbar-handle {
	position: absolute;
	background: #888;
	height: 14px;
}
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-handle {
	visibility: hidden;
}
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-dec, 
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-inc {
	background: #e3e3e3;
}

/* select */
.jcf-select {
	display: inline-block;
	vertical-align: top;
	position: relative;
	background: #fff;
	min-width: 75px;
	height: 48px;
	border-radius: 2px;
	border: 1px solid #666;
}
.jcf-select select {
	z-index: 1;
	left: 0;
	top: 0;
}
.jcf-select.jcf-drop-active .jcf-select-opener{
	-moz-transform: rotate(-180deg); /* Для Firefox */
	-ms-transform: rotate(-180deg); /* Для IE */
	-webkit-transform: rotate(-180deg); /* Для Safari, Chrome, iOS */
	-o-transform: rotate(-180deg); /* Для Opera */
	transform: rotate(-180deg);
}
.jcf-select .jcf-select-text {
	text-overflow:ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: default;
	display: block;
	font-size: 21px;
	line-height: 46px;
	margin: 0 25px 0 11px;
	text-transform: uppercase;
}

.jcf-select .jcf-select-text img {
	display: inline-block;
	vertical-align: top;
	width: 15px;
	margin: 3px 5px 0 0;
}

.jcf-select .jcf-select-opener {
	position: absolute;
	text-align: center;
	background: url(../images/bg-opener02.png) no-repeat;
	width: 10px;
	height: 5px;
	right: 10px;
	top: 20px;
}

.jcf-select-large {
	height: 34px;
	margin: 0;
	min-width: 200px;
}

.jcf-select-large .jcf-select-text {
	text-transform: none;
	line-height: 34px;
}

.jcf-select-large .jcf-select-opener {
	top: 15px;
}

body > .jcf-select-drop {
	position: absolute;
	margin: -1px 0 0;
	z-index: 9999;
	border-radius: 0 0 4px 4px;
	min-width: 75px;
}
body > .jcf-select-drop.jcf-drop-flipped {
	margin: 1px 0 0;
}
.jcf-select .jcf-select-drop {
	position: absolute;
	margin-top: 0px;
	z-index: 9999;
	top: 100%;
	left: -1px;
	right: -1px;
}

.jcf-select-drop .jcf-option-hideme{
	display: none !important;
}

.jcf-select .jcf-drop-flipped {
	bottom: 100%;
	top: auto;
}
.jcf-select-drop .jcf-select-drop-content {
	background: #fff;
	border-radius: 0 0 4px 4px;
	border: 1px solid #666;
}
.jcf-select-drop .jcf-option-hideme {display: none;}
/* multiple select styles */
.jcf-list-box {
	overflow: hidden;
	display: inline-block;
	min-width: 75px !important;
	width: auto !important;
	margin: 0 15px;
}
/* select options styles */
.jcf-list {
	display: inline-block;
	vertical-align: top;
	position: relative;
	line-height: 18px;
	font-size: 15px;
	width: 100%;
	border-radius: 0 0 4px 4px;
}
.jcf-list .jcf-list-content {
	vertical-align: top;
	display: inline-block;
	overflow: auto;
	width: 100%;
}
.jcf-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.jcf-list ul li {
	overflow: hidden;
	display: block;
}
.jcf-list .jcf-overflow {
	overflow: auto;
}
.jcf-list .jcf-option {
	white-space: nowrap;
	overflow: hidden;
	cursor: default;
	display: block;
	padding: 8px 9px;
	color: #1f1f1f;
	height: 1%;
	font-size: 21px;
}

.jcf-list .jcf-option img {
	display: inline-block;
	vertical-align: top;
	width: 15px;
	margin: 0 5px 0 0;
}

.jcf-list .jcf-disabled {
	background: #fff !important;
	color: #aaa !important;
}
.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
	background: #e6e6e6;
	color: #000;
}
.jcf-list .jcf-optgroup-caption {
	white-space: nowrap;
	font-weight: bold;
	display: block;
	padding: 5px 9px;
	cursor: default;
	color: #000;
}
.jcf-list .jcf-optgroup .jcf-option {
	padding-left: 30px;
}

/* file */
.jcf-file {
	display: inline-block;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	background: #fff;
}
.jcf-file .jcf-real-element {
	position: absolute;
	font-size: 200px;
	height: 200px;
	margin: 0;
	right: 0;
	top: 0;
}
.jcf-file .jcf-fake-input {
	display: inline-block;
	text-overflow:ellipsis;
	white-space: nowrap;
	vertical-align: top;
	overflow: hidden;
	padding: 0 8px;
	font-size: 13px;
	line-height: 34px;
	height: 34px;
	width: 150px;
	font-weight: bold;
	text-decoration: underline;
}

.jcf-file:hover .jcf-fake-input {
	text-decoration: none;
}

.jcf-file .jcf-upload-button {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 0 0 -1px;
	padding: 0 10px;
	line-height: 28px;
	height: 28px;
	display: none;
}
