@font-face {
	font-family: Roboto;
	src: url(/fonts/Roboto-Regular.ttf);
	font-weight: normal;
}
@font-face {
	font-family: Roboto;
	src: url(/fonts/Roboto-Bold.ttf);
	font-weight: bold;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	//font-family: Roboto;
	word-spacing: normal;
	box-sizing: border-box;
	hyphens: auto; /* переносы слов */
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

html {
	height: 101%;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #333333;
	font-family: Roboto;
}
body {
	cursor: default;
	font-size: 12px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	min-width: 1280px;
	line-height: 1.3;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
a {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #00AAFF;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
ul {
	margin-left: 10px;
	margin-top: 10px;
}
li {
	margin-left: 20px;
	margin-top: 5px;
	text-align: justify;
}
h1 {
	font-size: 20px;
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 20px;
	text-align: center;
	hyphens: manual; /* В заголовках переносы автоматически НЕ расставлять */
}
h2 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
	hyphens: manual; /* В заголовках переносы автоматически НЕ расставлять */
}
h3 {
	font-size: 16px;
	font-weight: bold;
	text-align: justify;
	margin-top: 10px;
	margin-bottom: 5px;
	hyphens: manual; /* В заголовках переносы автоматически НЕ расставлять */
}
h4 {
	font-size: 14px;
	font-weight: bold;
	text-align: justify;
	margin-top: 7px;
	hyphens: manual; /* В заголовках переносы автоматически НЕ расставлять */
}
p {
	font-weight: normal;
	text-align: justify;
	margin-top: 6px;
}
.button {
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	-o-user-select: none !important;
	-webkit-user-select: none !important;
	user-select: none !important;
	font-weight: bold;
}
input {outline: none !important;}
input:invalid {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #FF4444;
}
input:disabled {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #444444;
}
input::-moz-placeholder {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #333333;
}
input::-webkit-input-placeholder {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #333333;
}

/*
select option:first-child {
	color: #CCCCCC;
	background: #000000;
}
*/
select {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
}
select:disabled {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #333333;
}
select option {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
}


/* 888888888888888888888888888888888888888888888888888888888888888888888 */

.h-left {
	display: flex;
	justify-content: flex-start;
}
.h-right {
	display: flex;
	justify-content: flex-end;
}
.h-center {
	display: flex;
	justify-content: center;
}
.h-stretch {
	display: flex;
	justify-content: space-between;
}
.v-top {
	display: flex;
	align-items: flex-start;
}
.v-bottom {
	display: flex;
	align-items: flex-end;
}
.v-center {
	display: flex;
	align-items: center;
}
.v-stretch {
	display: flex;
	align-items: stretch;
}
.inline {
	display: inline-block;
}
.first {
	margin-top: 0 !important;
}
.mt {
	margin-top: 10px;
}
.mt2 {
	margin-top: 20px;
}
.mb {
	margin-bottom: 10px;
}
.mb2 {
	margin-bottom: 20px;
}
.ml {
	margin-left: 10px;
}
.ml2 {
	margin-left: 20px;
}
.mr {
	margin-right: 10px;
}
.mr2 {
	margin-right: 20px;
}
.mv {
	margin-top: 10px;
	margin-bottom: 10px;
}
.mv2 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.mh {
	margin-left: 10px;
	margin-right: 10px;
}
.mh2 {
	margin-left: 20px;
	margin-right: 20px;
}
.m {
	margin: 10px;
}
.m2 {
	margin: 20px;
}
.p {
	padding: 10px;
}
.pl {
	padding-left: 10px;
}
.pr {
	padding-right: 10px;
}

/* 888888888888888888888888888888888888888888888888888888888888888888888 */

.edit {
	display: flex;
	align-items: center;
	width: 300px;
	height: 22px;
	padding: 0 10px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
	font-size: 11px;
}

.edit:read-only {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #AAAAAA;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #444444;
}
.edit-short {
	display: flex;
	align-items: center;
	width: 150px;
	height: 22px;
	padding: 0 10px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
	font-size: 11px;
}
.edit-short:read-only {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #AAAAAA;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #444444;
}
.edit-short2 {
	display: flex;
	align-items: center;
	width: 80px;
	height: 22px;
	padding: 0 10px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
	font-size: 11px;
}
.edit-short2:read-only {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #AAAAAA;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #444444;
}
.edit-short3 {
	display: flex;
	align-items: center;
	width: 60px;
	height: 22px;
	padding: 0 10px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
	font-size: 11px;
}
.edit-short3:read-only {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #AAAAAA;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #444444;
}
.select {
	display: flex;
	align-items: center;
	width: 300px;
	height: 22px;
	padding: 0 10px;
	font-size: 11px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
}
.select-short {
	display: flex;
	align-items: center;
	width: 150px;
	height: 22px;
	padding: 0 10px;
	font-size: 11px;
}
.label {
	display: flex;
	align-items: center;
	//width: 250px;
	height: 22px;
	padding: 0 10px 0 10px;
}
.textarea {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 200px;
	min-height: 200px;
	padding: 10px 15px;
	font-size: 11pt;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #BBBBBB;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #000000;
}
.button {
	display: flex;
	align-items: center;
	height: 22px;
	padding: 0 10px;
	cursor: pointer;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #0088DD;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #000000;
	font-size: 11px;
	text-decoration: none !important;
}
.button:hover {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #FFFF00;
}
.button:hover:disabled {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #444444;
}
.button-plus {
	display: flex;
	align-items: center;
	height: 38px;
	padding: 0 25px 0 15px;
	cursor: pointer;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: #0088DD;
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #000000;
	font-size: 11pt;
	text-decoration: none !important;
}
.button-plus:hover {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #FFFF00;
}
.button-plus:hover:disabled {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #444444;
}
.button-plus > div {
	font-size: 20pt;
	margin-right: 15px;
}
.table {
	width: 100%;
	/* ------------------------------------ Цвет V ------------------------------------ */
	border: 2px solid #555555;
	margin-top: 10px;
}
.table > tbody > tr > th {
	height: 40px;
	padding: 5px 10px;
	text-align: center;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #555555;
}
.table > tbody > tr > td {
	height: 30px;
	padding: 5px 10px;
	text-align: center;
}
.table > tbody > tr:nth-child(odd) {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #333333;
}
.table > tbody > tr:nth-child(even) {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #222222;
}
.table-itogo {
	padding: 20px 10px;
	font-weight: bold;
}
.table-row-itogo > td {
	padding: 30px 5px 10px 5px !important;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background: linear-gradient(to bottom, transparent 10px, #333333 10px, #333333 12px, transparent 12px) !important;
	font-weight: bold;
}
.log {
	padding: 10px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #111111;
}
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}

/* 888888888888888888888888888888888888888888888888888888888888888888888 */

.background {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #111111;
}
.header {
	padding: 10px;
	height: 30px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #222222;
}
.footer {
	padding: 10px;
	min-height: 50px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #333333;
}
.page {
	padding: 10px;
	min-width: calc(100% - 0px);
	min-height: 800px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #222222;
}
.breadcrumbs {
	font-size: 10px;
	min-height: 15px;
}
.row {
	min-height: 30px;
}
.title {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #FF6600;
}
.bg-red {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #FF2200 !important;
}
.message-error {
	padding: 10px 20px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #880000;
}
.message-success {
	padding: 10px 20px;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #004400;
}
.NULL {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #555555;
}
.BADLINK {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #FF0000;
}
.TRUE {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #00AA00;
}
.FALSE {
	/* ------------------------------------ Цвет V ------------------------------------ */
	color: #FF44DD;
}
.FiltersGroup1 {
	background-color: #00DD00 !important;
	color: #000000 !important;
}
/*
.FiltersGroup2 {
	background-color: #550055;
}
*/
.dimtext {
	color: #777777;
}

.table > tbody > tr > .HeaderGroup2 {
	height: 40px;
	padding: 5px 10px;
	text-align: center;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #003366;
}
.table > tbody > tr:nth-child(odd) > .CellGroup2 {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #002244;
}
.table > tbody > tr:nth-child(even) > .CellGroup2 {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #001122;
}

.table > tbody > tr > .HeaderGroup3 {
	height: 40px;
	padding: 5px 10px;
	text-align: center;
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #003366;
}
.table > tbody > tr:nth-child(odd) > .CellGroup3 {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #002244;
}
.table > tbody > tr:nth-child(even) > .CellGroup3 {
	/* ------------------------------------ Цвет V ------------------------------------ */
	background-color: #001122;
}

.incrementer {
	background-color: rgb(0,0,0,0);
	color: #00AAFF;
	cursor: pointer;
	font-size: 16px;
}
.datatype {
	color: #404040;
	font-size: 16px;
}
.sort {
	color: #00AAFF;
	font-size: 16px;
}
.sort-active {
	color: #00FF00;
	font-size: 16px;
}
