/* Скрытый элемент и элемент JS */

.hidden, .js_enabled {
	display: none;
}

/* Обтекания */

.float_left {
	float: left;
}

.float_right {
	float: right;
}

/* Невидимый элемент */

.invisible {
	opacity: 0;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

/* Выравнивания */

.align_center {
	text-align: center;
}

.align_right {
	text-align: right;
}

/* Отмена обтекания */

.clear {
	clear: both;
}

/* Маленький текст */

.small {
	font-size: 11px;
}

/* Большой текст */

.big {
	font-size: 14px;
}

/* Заголовки */

.consult_content h1, .consult_content h2 {
	margin: 0 0 15px;
    padding: 15px 0 5px;
}

/* Рамка рисунка-ссылки */

.consult_content a img {
	border: none;
}

/* Важная ссылка */

a.important_link {
	font-weight: bold;
}

/* Важная кнопка */

a.important_button {
	padding: 5px 10px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #004080;
}

	/* При наведении мышью */
		
	a.important_button:hover, a.important_button:visited {
		color: #fff;
		text-decoration: underline;
	}
	
	/* При наведении мышью */
		
	#upload_button a.important_button:hover {
		color: #fff;
		text-decoration: none;
	}

/* Ссылки JS */

a.is_js_handlers {
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
}

/* Элементы формы */

.consult_content form input[type='text'], .consult_content form input[type='password'], 
.consult_content form textarea, .consult_content form select, .consult_content form fieldset {
	border: 1px solid #ccc;
}

	/* Обязательные элементы ... */

	.consult_content form .required {
		color: #cc5252;
	}

	/* Набор полей */
	
	.consult_content form fieldset {
		width: 420px;
		padding: 0; 
		padding-bottom: 15px;
	}
		
		/* Заголовок */
		
		.consult_content form fieldset legend {
			margin-left: 10px;
		}
	
		/* Элементы */
	
		.consult_content form fieldset dt, .consult_content form fieldset dd {
			margin-top: 5px;
			margin-left: 40px;
			margin-right: 10px;
		}

	/* Абзац */

	.consult_content form p, .consult_content form h3 {
		margin: 0 0 10px;
	}
	
	/* Область ввода */

	.consult_content form textarea {
		margin-bottom: 10px;
	}

	/* Кнопка */
	
	.consult_content .button {
		padding: 0 10px;
		text-decoration: none;
	}

/* Информация страниц */

.pages_info {
	margin-bottom: 8px;
}

/* Список страниц */

.pages_list {
	font-size: 14px;
}
	
	/* Страница */

	.pages_list a {
		padding: 0 5px;
	}
	
		/* Активная страница */
	
		.pages_list a.current_page {
			font-weight: bold;
		}

/* Форма поиска */

.consult_content .float_form {
	position: absolute;
	padding: 20px;
	box-shadow: 4px 4px 4px #333;
	border: 1px solid #ccc;
	background: #f4fbff;
	z-index: 5;
}

/* Успехи и ошибки формы */

.consult_content .success, .consult_content .errors {
	float: left;
	padding: 10px;
	margin-bottom: 15px;
	color: #fff;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

	.consult_content .success ul, .consult_content .errors ul {
		margin-bottom: 5px;
	}

		.consult_content .success ul li, .consult_content .errors ul li {
			margin-left: -15px;
		}

.consult_content .success {
	background: #004080;
}

.consult_content .errors {
	background: #964141;
}

/* Таблица */

.consult_content table {
	border-collapse: collapse;
}

	/* Простая ячейка и заголовок */

	.consult_content table th, .consult_content table td {
		padding: 0 5px;
	}

/* Значок загрузки */

#site_wait {
	position: absolute;
	left: 50%;
	margin-left: -110px;
}

/* Кнопка "Закрыть" в форме поиска */

.close_search {
	margin-right: 20px;
}

/* Выбор цвета */

.color_preview {
	margin-left: 10px;
	padding: 2px 10px;
	border: 1px solid #000;
	cursor: pointer;
}

/* Справка */

.help {
	position: relative;
	margin-left: 10px;
	padding: 1px 5px;
	color: #777;
	font-size: 11px;
	font-weight: bold;
	background: #fff;
	border: 1px solid #777;
	cursor: pointer;
}

	.help .content {
		display: none;
		position: absolute;
		top: -2px;
		left: 20px;
		padding: 5px;
		width: 200px;
		color: #000;
		font-size: 12px;
		font-weight: normal;
		background: #fff;
		border: 1px solid #777;
	}
	
/* Админка */

.admin_menu {
	position: absolute;
	top: 20px;
	right: 15px;
	padding: 10px;
	background: #f7f7f7;
}