/* Общий блок формы, рамка */
.sf-form{
	padding: 5px 0;
	border: 2px solid #fb4;
	margin-bottom: 20px;

	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.sf-form a{
	color: #05c;
	text-decoration: none;
}
.sf-form a:hover{
	color: #c40;
}

/* Блок для поля */
.sf-div{
	padding: 7px 10px;
	border-bottom: 1px dashed #ccc;
}
/* Название поля, заголовок блока */
.sf-div-title{
	font-weight: bold;
	padding-bottom: 2px;
}
/* Ссылка для очистки всех значений заданного поля */
.sf-div-all{
	float: right;
}

/* Список из чекбоксов */
.sf-list{
	list-style: none;
}
.sf-list li{
	padding: 2px 5px;
}
/* Количество публикаций у поля */
.sf-list li a span{
	color: #777;
	font-size: 11px;
}
/* Чекбоксы */
.sf-list li a input{
	cursor: pointer;
	vertical-align: middle;
}
/* Отмеченное поле */
.sf-list li.current a{
	color: #444;
}

/* Список полей для одиночного выбора */
.sf-list-single{
	list-style: none;
	margin: 0;
	padding: 0;
	height: 30px;
}
.sf-list-single li{
	float: left;
	margin-right: 2px;
	font: bold 11px/30px Arial;
}
.sf-list-single li a{
	display: block;
	width: 30px;
	height: 30px;
	background: #f8f8f8;
	text-align: center;
}
.sf-list-single li.current a{
	background: #eee;
	color: #666;
}



/* Область полей от...до */
.range-inputs{
	padding-top: 5px;
}
/* Поле ввода */
.range-inputs input{
	height: 20px;
	width: 60px;
	padding: 0 0 0 5px;
	border: 1px solid #ccc;
	vertical-align: middle;
}
/* Область кнопки выполнения поиска по заданному диапазону */
.range-submit{
	text-align: center;
	padding-bottom: 7px;
}
/* Кнопка поиска по диапазону */
.range-submit a{
	display: inline-block;
	padding: 6px 12px;
	border: 1px solid #eee;
	background: #fafafa;
}


/* Обязательные стили для слайдера */
.ui-slider {
	position: relative;
	text-align: left;
	background: #DDEBF4;
	margin: 10px 5px;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 4px;
	height: 10px;
	cursor: pointer;
	border:1px solid #ccc;
	background:#f3f5f7;
}
.ui-slider .ui-slider-handle:active{
	background:#fff;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
	background: #00be03;
}

.ui-slider-horizontal {
	height: 2px;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -4px;
	margin-left: -5px;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
} 